-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (73 loc) · 1.13 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
background: #cecece;
margin: 0;
font: 62.5% Verdana, Arial, sans-serif;
line-height: 1.6;
}
.wrapper {
width: 600px;
margin: 50px auto;
padding: 20px;
background: #fff;
border: 1px solid #888;
border-radius: 10px;
font-size: 1.6em;
text-align: center;
}
h1 {
line-height: 1.2;
margin-bottom: 30px;
font-size: 1.8em;
font-weight: 100;
}
.kana-container {
height: 40px;
margin-bottom: 10px;
}
form {
margin: 0 0 10px;
}
.answer-input {
background: #fff;
border-radius: 5px;
width: 200px;
border: 1px solid #888;
padding: 5px 10px;
font: 1.2em Verdana, Arial, sans-serif;
text-align: center;
}
.answer-response {
height: 20px;
margin-bottom: 20px;
}
.correct {
color: green;
}
.wrong {
color: red;
}
.wrong-list {
list-style-type: none;
margin: 10px auto;
padding: 0;
width: 250px;
}
.wrong-list li {
padding: 2px 5px;
line-height: 40px;
border-bottom: 1px solid #cecece;
overflow: hidden;
text-align: center;
}
.wrong-list .kana {
width: 80px;
float: left;
}
.wrong-list .answer {
float: left;
width: 80px;
}
.wrong-list .guest {
float: left;
width: 80px;
}