-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (76 loc) · 1.26 KB
/
styles.css
File metadata and controls
89 lines (76 loc) · 1.26 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
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
.y-axis .domain {
display: none;
}
.x-axis .domain {
color: #F0F4F8;
}
.y-axis .tick line{
width: 100%;
color: #ECECEC
}
.bars {
border-radius: 5px;
}
.x-axis .tick line {
visibility: hidden;
}
html, body {
height: 100%;
font-family: Arial, Helvetica, sans-serif
}
svg{
border: 1px solid #ECECEC;
border-radius: 8px;
background-color: #FFFFFF;
}
body {
background-color: #FAFBFC;
}
text {
color: #78869B;
fill: #78869B;
}
.title{
font-size: 24px;
fill: black;
}
#tooltip text {
color: white;
fill: white;
}
#tooltip{
opacity: 0;
background-color: black;
color: white;
position: fixed;
padding: 8px;
border-radius: 4px;
pointer-events: none;
text-align: center;
}
#value {
margin-bottom: 8px;
}
#tooltip::after{
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -10px;
width: 0;
height: 0;
border-top: solid 8px black;
border-left: solid 10px transparent;
border-right: solid 10px transparent;
pointer-events: none;
}
#bar-chart-select {
padding: 8px 12px;
border-radius: 8px;
border: 1px solid #ECECEC;
background-color: #F0F4F8;
}
#bar-chart-select:after{
color: #78869B;
fill: #78869B;
}