-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (94 loc) · 1.71 KB
/
Copy pathstyles.css
File metadata and controls
110 lines (94 loc) · 1.71 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.chartholder {
position: relative;
display: flex;
justify-content: center;
width: 100%;
height: 100%;
left: 0%;
top: 0.0%;
}
.axis-x text, .axis-y text {
font-family: Roboto, sans-serif;
font-size: 8px
}
.x-axis-bar path,
.x-axis-bar line,
.y-axis-bar line,
.y-axis-bar path {
stroke-opacity: 0.5
}
/* .x-axis-bar path{
transform: translateX(-0.5px) translateY(-0.5px);
}
.y-axis-bar line{
transform: translateX(0) translateY(-0.5px);
}
.y-axis-bar path {
transform: translateX(-0.5px) translateY(-0.5px);
} */
.y-axis-bar text {
transform: translateX(2.5px);
}
.x-axis-bar text {
transform: translateY(-2.5px);
}
.leftAxisLabel-bar text{
font: 2px
}
.color-legend {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0;
padding-left:0;
}
li {
list-style: none;
}
.color-legend-item {
margin: 5px 12px;
font-size:1.4rem;
}
.color-legend span {
display: inline-block;
}
.color-legend-item-color {
position: relative;
top: 2px;
width: 14px;
height: 14px;
margin-right:5px;
border-radius:3px;
}
rect:hover{
fill:orange;
}
rect {
transition: all 0.25s;
}
#filters {
margin: 10px 0px 5px;
}
.filter {
min-width: 80px;
margin: 0 5px;
padding: 8px 10px;
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1;
color: #faffff;
font-weight: 500;
background-color: rgba(48, 82, 82, 0.5);
border: none;
border-radius: 4px;
cursor: pointer;
/* transition: background-color 0.3ms ease-in; */
}
.filter:hover,
.filter.active {
background-color: rgba(48, 82, 82, 1);
transition-timing-function: ease-out;
}
.filter.active {
cursor: default;
}