-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
88 lines (73 loc) · 1.06 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
font-family: Arial;
font-size: 120%;
}
a {
color: #563d7c;
text-decoration: none;
transition: color 0.1s;
}
a:hover {
color: #8570a5;
}
button {
display: inline-block;
margin: 5px;
cursor: pointer;
font-size: 100%;
background-color: #563d7c;
border-radius: 5px;
padding: 2px 10px;
color: white;
border: 0;
transition: background-color 0.1s;
}
button:hover {
background-color: #8570a5;
}
.choices button {
display: block;
}
input[type="text"] {
font-size: 100%;
}
ol {
padding-left: 0px;
max-height: 400px;
overflow: auto;
}
li {
padding: 5px;
list-style: decimal inside none;
}
li:nth-child(odd) {
background-color: #f3edfc;
}
.wrapper {
margin: 100px auto 0 auto;
max-width: 600px;
}
.hide {
display: none;
}
.start {
text-align: center;
}
.scores {
position: absolute;
top: 10px;
left: 10px;
}
.feedback {
font-style: italic;
font-size: 120%;
margin-top: 20px;
padding-top: 10px;
color: gray;
border-top: 2px solid #ccc;
}
.timer {
position: absolute;
top: 10px;
right: 10px;
}