-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
62 lines (52 loc) · 925 Bytes
/
Copy pathmain.css
File metadata and controls
62 lines (52 loc) · 925 Bytes
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
* {
padding: 0px;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: lightgray;
}
#chart-container {
display: flex;
align-items: center;
align-content: center;
justify-items: center;
justify-content: center;
padding: 5px;
min-width: 1280;
}
#chart {
box-shadow: 4px 4px 15px;
border-radius: 5px;
}
h1 {
margin-top: 2vh;
color: black;
text-align: center;
font-weight: normal;
}
h2 {
margin-top: 1vh;
margin-bottom: 1vh;
color: black;
text-align: center;
font-weight: normal;
}
#tooltip {
background: black;
color: black;
font-weight: bolder;
font-size: .8em;
padding: 5px;
border-radius: 5px;
box-shadow: 4px 4px 10px;
border: 3px solid black;
transition: opacity .3s;
}
#tooltip p {
color: white;
}
.legend-text {
font-size: .8em;
text-align: center;
}