-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclicker.css
376 lines (354 loc) · 7.6 KB
/
clicker.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
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
* {
box-sizing: border-box;
font-family: "Fira Sans", Roboto, monospace;
}
body {
width: 100%;
overflow: hidden;
padding: 0;
margin: 0;
background-color: #343a40;
color: white;
/* font-size: 1.125rem; */
}
.arrow {
border: solid white;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
}
.right {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
.left {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
.up {
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
}
.down {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
}
.gutter {
background-color: #fff;
margin: 0;
padding: 0;
background-repeat: no-repeat;
background-position: 50%;
}
.gutter.gutter-horizontal {
cursor: col-resize;
}
.gutter.gutter-vertical {
cursor: row-resize;
}
input.allinput {
outline: none;
border: 0.125rem solid white;
border-radius: 0.25rem;
padding: 0.125rem;
margin: 0.25rem 0;
}
input.allinput:focus {
border: 0.15rem solid #7a7a7a;
}
input[type=button].allbutton,
button.allbutton {
outline: none;
background-color: #ffb900;
color: black;
border: 0.125rem solid #ffb900;
border-radius: 0.25rem;
padding: 0.125rem;
margin: 0.25rem 0;
}
input[type=button].allbutton:focus,
button.allbutton:focus {
border: 0.15rem solid black;
box-shadow: 0 0 0 0.125em white;
}
#ColumnsContent {
display: flex;
width: 100vw;
height: 100vh;
}
#ColumnsContent .column {
height: 100vh;
padding: 0.975rem;
}
#ConfigureMenu {
display: flex;
flex-flow: column nowrap;
overflow: scroll;
overflow-x: hidden;
scrollbar-width: none;
}
#ConfigureMenu::-webkit-scrollbar {
display: none;
}
#ConfigureMenu * {
width: 100%;
}
#ConfigureMenu label.menulabel {
font-size: 0.975em;
margin-bottom: 0.25em;
margin-top: 0.25em;
}
#ConfigureMenu #JudgeNames,
#ConfigureMenu #JudgeKeys {
display: flex;
flex-direction: column;
align-items: center;
border: 0.15rem solid white;
border-radius: 0.2rem;
padding: 0.5rem;
overflow: scroll;
overflow-x: hidden;
scrollbar-width: none;
}
#ConfigureMenu #JudgeNames::-webkit-scrollbar,
#ConfigureMenu #JudgeKeys::-webkit-scrollbar {
display: none;
}
#ConfigureMenu #JudgeKeys div div {
display: flex;
justify-content: space-between;
align-items: space-between;
}
#ConfigureMenu #JudgeKeys div div input {
display: inline-flex;
flex-flow: column nowrap;
width: 47.5%;
}
#ConfigureMenu #BottomMenu {
padding-top: 0.25em;
margin-top: auto;
}
#ConfigureMenu #BottomMenu #ContainerToggleKey {
background-color: #343a40;
color: white;
}
#ConfigureMenu #BottomMenu #ContainerToggleVisibility {
background-color: #343a40;
color: white;
}
#MiddlePortion {
display: inline-flex;
flex-flow: column nowrap;
flex: 1 1 80vw;
overflow: scroll;
overflow-x: hidden;
-ms-overflow-style: none;
/* Internet Explorer 10+ */
scrollbar-width: none;
}
#MiddlePortion::-webkit-scrollbar {
display: none;
}
#MiddlePortion #MediaSettings {
height: auto;
}
#MiddlePortion #MediaDisplay {
height: 100%;
display: flex;
flex-flow: column nowrap;
}
#MiddlePortion #MediaDisplay #VideoFrame {
height: 100%;
}
#MiddlePortion #JudgeClickerDir {
display: flex;
flex-flow: row nowrap;
justify-content: space-evenly;
align-content: center;
overflow: scroll;
overflow-y: hidden;
-ms-overflow-style: none;
/* Internet Explorer 10+ */
scrollbar-width: none;
}
#MiddlePortion #JudgeClickerDir::-webkit-scrollbar {
display: none;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker {
display: flex;
padding: 1rem;
justify-content: space-around;
align-items: center;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker .ClickerContainer {
padding: 5%;
display: flex;
flex-flow: column nowrap;
justify-content: space-evenly;
align-items: center;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker .ClickerContainer span {
text-align: center;
font-weight: bold;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker .ClickerContainer button {
font-weight: normal;
text-align: center;
outline: none;
background-color: #ffb900;
color: black;
border: 0.125rem solid #ffb900;
border-radius: 0.25rem;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker .ClickerContainer.ClickerPositiveContainer span {
color: #90e172;
}
#MiddlePortion #JudgeClickerDir div.JudgeClicker .ClickerContainer.ClickerNegativeContainer span {
color: #ff9494;
}
#Player {
display: flex;
flex-flow: column nowrap;
overflow: scroll;
overflow-x: hidden;
-ms-overflow-style: none;
/* Internet Explorer 10+ */
scrollbar-width: none;
}
#Player::-webkit-scrollbar {
display: none;
}
#Player input {
width: 100%;
}
#Player #PlayerMenu {
margin-bottom: 0.25em;
}
#Player ul#PlayerList {
border: 0.15em solid white;
border-radius: 0.2em;
height: 100%;
margin: 0;
padding: 0;
list-style-type: none;
overflow: scroll;
overflow-x: hidden;
-ms-overflow-style: none;
/* Internet Explorer 10+ */
scrollbar-width: none;
}
#Player ul#PlayerList::-webkit-scrollbar {
display: none;
}
#Player ul#PlayerList li {
margin-bottom: 0.2em;
padding: 0;
}
#Player ul#PlayerList li .inlinenameandbutton {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
width: 100%;
background-color: #ffb900;
text-align: center;
padding: 0.25em;
}
#Player ul#PlayerList li .inlinenameandbutton p {
display: inline-flex;
color: black;
padding: 0;
margin: 0;
}
#Player ul#PlayerList li .inlinenameandbutton span {
display: inline-flex;
color: black;
cursor: pointer;
margin: 0;
padding: 0;
}
#Player ul#PlayerList li .inlinescores {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
background-color: #6c757d;
}
#Player ul#PlayerList li .inlinescores div.SummaryScoreContainer {
display: flex;
flex-flow: row wrap;
}
#Player ul#PlayerList li .inlinescores div.SummaryScoreContainer span {
margin: 0.2em;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
flex: 1 auto auto;
height: 100%;
background-color: #6c757d;
}
#Player ul#PlayerList li .inlinescores div.SummaryScoreContainer span.SummaryScorePositive {
text-shadow: 0 0 0.15em #90e172;
}
#Player ul#PlayerList li .inlinescores div.SummaryScoreContainer span.SummaryScoreNegative {
text-shadow: 0 0 0.15em #ff9494;
}
#Player ul#PlayerList li .inlinescores button {
height: 100%;
background-color: #6c757d;
margin: 0;
border: 0;
border-radius: 0;
}
#Player ul#PlayerList li .inlinescores button i {
display: inline-flex;
background-color: #6c757d;
color: white;
}
#Player ul#PlayerList li .inlinescores button:focus {
border: 0;
box-shadow: 0 white;
}
#Player ul#PlayerList li div.judgescore {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
padding: 0.5em;
margin: 0;
border-bottom: 1px solid white;
}
#Player ul#PlayerList li div.judgescore p {
display: flex;
color: white;
background-color: #343a40;
padding: 0;
margin: 0;
}
#Player ul#PlayerList li div.judgescore div {
display: flex;
background-color: white;
border-radius: 0.2em;
color: black;
margin: 0;
}
#Player ul#PlayerList li div.judgescore div span {
margin: 0.2em;
}
#Player ul#PlayerList li div.judgescore div span.JudgeScoresPositive {
color: #0fbd48;
}
#Player ul#PlayerList li div.judgescore div span.JudgeScoresNegative {
color: #d54c2e;
}
/*# sourceMappingURL=clicker.css.map */