-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
114 lines (94 loc) · 1.63 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
h1:not(:first-child) {
margin-top: 1em;
}
.button {
display: inline-block;
text-align: center;
padding: .4em .7em;
border-radius: 5px;
box-shadow: 0 1px 5px rgba(0, 0, 0, .7);
margin: 8px 3px;
cursor: pointer;
user-select: none;
transition: all .1s;
min-height: 2em;
line-height: 2em;
vertical-align: middle;
}
.button:hover {
box-shadow: 0 1px 8px #000;
background-color: #DDD;
}
.button:active {
box-shadow: 0 0px 2px rgba(0, 0, 0, .5);
}
.center {
text-align: center;
}
*/
.char {
padding: 0 .25em;
font-weight: bold;
cursor: pointer;
}
.char:not(.active) {
color: #AAA;
}
header>*:not(:first-child) {
padding-left: .5em;
}
.gray-button {
font-weight: bold;
color: #AAA;
cursor: pointer;
}
#practice {
background: #DDD;
font-weight: bold;
font-size: 3em;
border-radius: 5px;
margin-top: .5rem;
}
#practice.waiting {
background: #AAA;
}
#practice>* {
padding: .5em;
color: #555;
}
#practice pre {
font-family: inherit;
white-space: pre-wrap;
word-wrap: break-word;
display: inline;
}
#l1-Fin,
#l1-Log>* {
color: #EEE;
background-color: #555;
}
#l1-Log>* {
color: #EEE;
background: linear-gradient(to right, #555 calc(100% - 2px), #F00 calc(100% - 1px));
}
.charList {
margin-left: .5em;
font-weight: bold;
}
.charList>*:not(:first-child) {
margin-left: .5em;
}
.charList>*:nth-child(odd){
color: #777;
}
#score-container {
margin-bottom: 1em;
font-size: 2em;
}
#score-container>* {
padding: 0 1em;
}
tr>* {
padding: 0 1em;
}