-
Notifications
You must be signed in to change notification settings - Fork 0
/
d3Style.css
73 lines (63 loc) · 1.04 KB
/
d3Style.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
.aText {
font-family: sans-serif;
font-size: 1.5vw;
text-anchor: middle;
fill: #fff;
}
.active {
font-family: sans-serif;
font-weight: bold;
font-size: 2vw;
/* fill: #000; */
fill: black;
opacity: 0.6;
/* transition: fill 0.3s ease-out; */
text-anchor: middle;
}
.inactive {
font-family: sans-serif;
font-weight: lighter;
font-size: 2vw;
fill: grey;
/* transition: fill 0.3s ease-out; */
text-anchor: middle;
}
.inactive:hover {
fill: #e75480;
/* cursor: pointer; */
cursor: pointer;
}
.circ:hover {
stroke: #000;
stroke-width: .25vw;
}
.chart {
display: block;
margin: 0;
}
.d3-tip {
padding: 0px 6px;
margin: 0px 0px;
font-size: 12px;
line-height: 1.5em;
color: #fff;
text-align: center;
text-transform: capitalize;
background: rgba(0, 0, 0, 0.8);
border-radius: 4px;
}
hr{
border: 1px solid #fff;
padding: 0px;
margin: 0px;
}
/* Mobile Rules */
@media all and (max-width: 530px) {
.aText {
display: none;
}
.circ:hover {
stroke: black;
stroke-width: 0.5vw;
}
}