-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
112 lines (110 loc) · 1.58 KB
/
style.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
* {
font-family: sans-serif;
user-select: none;
}
html, body {
overflow: hidden;
}
body {
position: relative;
}
a:link {
color: black;
text-decoration: underline;
}
a:visited {
color: black;
text-decoration: none;
}
body {
background-color: lightblue;
}
td {
border: 1px solid gray;
}
#outer {
display: flex;
flex-direction: column;
width: 85vw;
height: 85vh;
margin:auto;
}
#bodyContainer {
flex-direction: row;
display: flex;
flex: 90%;
min-width: 0;
min-height: 0;
}
@media (max-width: 800px){
#bodyContainer {
flex-direction: column;
display: flex;
flex: 90%;
min-width: 0;
min-height: 0;
}
}
#container {
flex: 69%;
border: 1px solid lightblue;
min-width: 0;
min-height: 0;
}
#subPanel {
flex: 29%;
display: flex;
flex-direction: column;
min-width: 0;
min-height: 0;
}
@media (max-width: 800px) {
#subPanel {
flex: 29%;
display: flex;
flex-direction: row;
min-width: 0;
min-height: 0;
}
}
#upNextDiv, #infoDiv {
display: flex;
flex-direction: column;
flex: 49%;
border: 1px solid lightblue;
text-align: center;
background-color: skyblue;
min-width: 0;
min-height: 0;
}
#upNextDiv {
flex: 30%;
}
#upNext {
font-size: large;
font-size: 5vw;
margin: auto;
}
#infoDiv > * {
overflow-y: hidden;
margin: auto;
}
.instruction {
font-size: 100%;
}
#scoreBoard {
font-size: 200%;
font-weight: bold;
}
#info {
flex: 10%;
text-align: center;
font-size: small;
min-width: 0;
min-height: 0;
}
#debugContainer {
display: none;
margin:auto;
text-align: center;
}