-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
executable file
·62 lines (57 loc) · 1.15 KB
/
main.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
body {
margin: 50 auto;
background-color: white;
display: block;
font-family: sans-serif;
font-size: 9px;
text-align: center;
}
#title {
font-family: 'Chonburi', sans-serif;
margin: 20px 0;
}
#title h1 {
font-size: 5.1em;
margin: 0;
}
#title h2 {
font-size: 2em;
margin: 0;
}
.credit {
font-size: 11px;
}
.label {
font-family: sans-serif;
font-size: 11px;
}
.button {
display: inline-block;
padding: 0.5em;
text-align: center;
font-size: 11px;
border: 1px solid black;
background-color: white;
color: black;
}
.button.highlighted, .button:hover {
background-color: black;
color: white;
cursor: pointer;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.legendCells rect.swatch {
stroke: white;
}
.dark-background .legendCells text.label {
fill: black;
/* fill: white; */
}