-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.css
74 lines (60 loc) · 828 Bytes
/
examples.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
63
64
65
66
67
68
69
70
71
72
73
74
rect{
fill: #1abc9c;
}
.slice-0{
fill: #3498db;
}
.slice-1{
fill: #9b59b6;
}
.slice-2{
fill: #f1c40f;
}
.slice-3{
fill: #e74c3c;
}
.slice-4{
fill: #2c3e50;
}
svg text{
font-family: georgia;
fill:#2c3e50;
}
.country.FXX{
fill:red;
}
.line {
stroke: #bccd2a;
stroke-width: 2.5px;
fill: none;
}
.axis path,
.axis line {
fill: none;
stroke: #6e6e6e;
shape-rendering: crispEdges;
}
.tick line{
opacity: 0.1;
}
.bulletLine{
fill:#afb3b5;
}
.bulletLine:hover{
fill:black;
}
div.tooltip {
position: absolute;
text-align: center;
width: 60px;
height: 18px;
padding: 2px;
padding-top: 4px;
font-weight: bold;
color:white;
font: 12px sans-serif;
background: black;
border: 0px;
border-radius: 2px;
/* pointer-events: none; This line needs to be removed */
}