-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
128 lines (109 loc) · 2.08 KB
/
styles.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
/* ubuntu-regular - latin */
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
src:
url('../fonts/ubuntu-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../fonts/ubuntu-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* ubuntu-700 - latin */
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 700;
src:
url('../fonts/ubuntu-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../fonts/ubuntu-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
#container {
width: 100%;
height: 100vh;
max-height: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 4.5vh;
font-family: 'Ubuntu', sans-serif;
}
center {
height: auto;
}
ul {
height: auto;
}
.infoText {
bottom: 0;
padding: 1em;
height: auto;
position: absolute;
font-size: 0.5em;
font-family: 'Ubuntu', sans-serif;
}
* {
margin: 0;
padding: 0;
height: 100%;
}
.options {
font-size: 0.5em;
font-family: 'Ubuntu', sans-serif;
display: flex;
align-items: center;
position: relative;
text-align: center;
}
.options-container {
position: absolute;
top: 0;
padding: 1vh;
height: auto;
display: flex;
align-items: center;
flex-direction: column;
}
#options-help-overlap {
font-size: 0.5em;
font-family: 'Ubuntu', sans-serif;
padding: 0.5em;
display: none;
}
#options-help-alternate {
font-size: 0.5em;
font-family: 'Ubuntu', sans-serif;
padding: 0.5em;
display: none;
}
input[type="checkbox"]{
transform: scale(2);
height: auto;
}
.legend-container{
height: 80%;
}
.legend-container table{
font-size: 0.5em;
table-layout: fixed;
display: block;
margin-bottom: 0;
}
.legend-container table th{
padding: 0.5em
}
.legend-container table td{
padding: 0.5em
}
.legend-container table caption{
text-align: center;
color: black;
}
tr {
cursor: pointer;
touch-action: manipulation;
}
svg {
width: 30vw;
max-width: 15vh;
}