-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·61 lines (57 loc) · 1.13 KB
/
main.css
File metadata and controls
executable file
·61 lines (57 loc) · 1.13 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
body {
margin: 50;
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 h2 {
font-size: 3.5em;
margin: 0;
line-height: 1.2em;
}
#title h3 {
font-size: 3.3em;
margin: 0;
line-height: 1.2em;
}
#title h4 {
font-size: 1.4em;
margin: 0;
line-height: 1.2em;
}
#desc {
margin: 20px 0;
font-size: 1.2em;
}
#chart {
margin-top: 20px;
}
.button {
display: inline-block;
padding: 0.5em;
text-align: center;
font-size: 1.2em;
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 */
}