-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleaderboards.css
More file actions
250 lines (213 loc) · 4 KB
/
leaderboards.css
File metadata and controls
250 lines (213 loc) · 4 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/* LOADING PAGE */
body {
height: 90vh;
}
#loading-page {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#loading-text {
padding: 8px;
font-weight: bold;
font-size: 1.5em;
text-align: center;
}
#loading-bar-container {
border: 1px solid #eeeeee;
height: 10px;
width: 300px;
}
#loading-bar {
background-color: #eeeeee;
height: 100%;
width: 0%;
}
/* CHECKBOXES */
#multi-category-div-inner {
display: flex;
flex-direction: row;
}
#multi-category-div-inner div {
padding-right: 35px;
}
#other-options-div-inner {
display: flex;
flex-direction: row;
}
#other-options-div-inner div {
padding-right: 35px;
}
.checkbox-column {
display: flex;
flex-direction: column;
}
label {
display: block;
position: relative;
margin-top: 5px;
padding-left: 23px;
cursor: pointer;
font-size: 15px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default checkbox */
label input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 15px;
width: 15px;
background-color: rgb(100,100,100);
}
/* On mouse-over, add a grey background color */
label:hover input ~ .checkmark {
background-color: rgb(115,115,115);
}
/* When the checkbox is checked, add a blue background */
label input:checked ~ .checkmark {
background-color: rgb(100,0,0);
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Show the checkmark when checked */
label input:checked ~ .checkmark:after {
display: block;
}
/* Style the checkmark/indicator */
label .checkmark:after {
left: 5px;
top: 2px;
width: 3px;
height: 6.5px;
border: solid white;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
/* SELECTORS */
select {
background-color: rgb(38,38,38);
color: white;
border: none;
padding: 3px 30px 3px 3px;
margin: 2px 6px 4px 0px;
}
select option {
background-color: rgb(38,38,38);
}
select option:hover {
box-shadow: 0 0 10px 100px purple inset;
}
/* DATE INPUT */
input[type=date] {
background-color: rgb(38,38,38);
color: white;
border: none;
padding: 3px 3px 3px 5px;
margin: 5px 6px 3px 0px;
}
input {
color-scheme: dark;
}
/* BUTTONS */
button {
background-color: rgb(30,30,30);
color: rgb(220,220,220);
border: none;
cursor: pointer;
padding: 6px 8px 6px 8px;
margin: 5px 6px 3px 0px;
font-weight: bold;
}
#go-button {
background-color: rgb(90,0,0);
}
button:hover {
background-color: rgb(42,42,42);
}
#go-button:hover {
background-color: rgb(110,10,10);
}
/* TOOL TIPS */
/* .tooltip {
border-bottom: 1px dotted black;
} */
.tooltip {
cursor: none;
}
.tooltiptext {
background: black;
border: 2px solid rgb(90,0,0);
padding: 3px;
margin: 2px;
color: rgb(120,120,120);
position: absolute;
white-space: pre-line;
font-weight: normal;
}
.tooltip .tooltiptext {
visibility: hidden;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
/* GENERIC TABLE STYLE */
table {
border-collapse: collapse;
border-style: hidden;
}
th {
font-weight: bold;
text-align: left;
}
table td, table th {
border: 1px solid #aaaaaa;
padding: 5px 20px 5px 10px;
text-align: left;
}
/* ROW CLASSES */
.row-header {
font-weight: bold;
}
.row-normal {
font-weight: normal;
}
.row-marked {
color: red;
}
/* COLUMN CLASSES */
.column-date {
text-align: left;
}
.column-time {
text-align: right;
}
.column-place {
text-align: right;
}
.column-player {
text-align: left;
}
/* GRAPHICS */
/* #graphics-canvas {
border: 1px solid yellow;
} */