-
Notifications
You must be signed in to change notification settings - Fork 0
/
bar.css
60 lines (58 loc) · 1.05 KB
/
bar.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
.Bar {
text-align: center;
width: 100vw;
height: 100vh;
}
.container {
text-align: center;
width: 95%;
height: 95%;
margin-left: auto;
margin-right: auto;
margin: 1% auto 1% auto;
border-radius: 20px;
padding-bottom: 30px;
padding-top: 10px;
}
.svg-container {
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 100%; /* aspect ratio */
vertical-align: top;
overflow: hidden;
}
.rect {
fill: #1d4a5d;
}
.tooltip {
position: absolute;
z-index: 10;
display: inline-block;
background-color: black;
padding: 10px;
border-width: 2px;
border-color: white;
border-radius: 5px;
fill-opacity: 100;
font-family: "Robot Mono", sans-serif;
color: whitesmoke;
padding: 1rem;
font-size: 15px;
z-index: 100;
visibility: hidden;
}
.chart-title {
font-family: "Montserrat", sans-serif;
font-size: 16px;
text-align: center;
}
.axis-label {
font-family: "Montserrat", sans-serif;
font-size: 20px;
color: black;
}
.y-axis-ticks {
font-family: "Montserrat", sans-serif;
font-size: 9px;
}