-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (58 loc) · 907 Bytes
/
style.css
File metadata and controls
68 lines (58 loc) · 907 Bytes
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
html * {
padding: 0;
margin: 0;
text-align: center;
}
[v-cloak] {
display: none;
}
#score, #timer {
font-size: 150%;
font-weight: bold;
margin: 1em;
}
#timer {
font-size: 120%;
}
.kpt-choice span, input {
width: 4em;
display: inline-block;
}
button {
font-size: 120%;
font-weight: bold;
text-align: center;
border-radius: 10px;
background: #2a2;
margin: 1em auto;
padding: 0.25em;
cursor: pointer;
}
button:hover {
background: #4c4;
}
.progress-bar {
margin: 0.5em auto;
width: 200px;
height: 20px;
border-radius: 3px;
border: 1px solid #888
}
.progress-bar span {
height: 100%;
border-radius: 3px;
background-color: #383;
display: block;
}
.kpt {
width: 20em;
padding-left: 3em;
margin: 1em auto;
display: grid;
grid-template-columns: repeat(3, 1fr 1fr 2fr);
}
.kpt > span {
display: block;
width: 100%;
text-align: left;
}