-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.css
127 lines (110 loc) · 1.72 KB
/
map.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
overflow: hidden;
margin: 0;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica;
}
.row {
display: inline-flex;
align-items: center;
width: 100%;
padding: 0 !important;
margin: 0 !important;
}
#worldmap {
position: relative;
height: 100%;
}
.axis text {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 8px;
line-height: 1.42857143;
color: #333;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
.charts {
padding: 10px;
border: 1px solid #222;
}
#tooltip {
position: absolute;
text-align: center;
padding: 20px;
margin: 10px;
font: 12px sans-serif;
background: lightsteelblue;
border: 1px;
border-radius: 2px;
pointer-events: none;
}
#tooltip h4 {
margin: 0;
font-size: 14px;
}
#tooltip {
background: rgba(0, 0, 0, 0.9);
border: 1px solid grey;
border-radius: 5px;
font-size: 12px;
width: auto;
padding: 4px;
color: white;
opacity: 0;
z-index: 10;
}
#tooltip table {
table-layout: fixed;
}
#tooltip tr td {
padding: 0;
margin: 0;
}
#tooltip tr td:nth-child(1) {
width: 100px;
}
#tooltip tr td:nth-child(2) {
text-align: center;
}
.legend-box {
height: 120px;
width: 200px;
}
.legend-group > label {
display: block;
}
.legend-btns {
display: inline-flex;
align-items: center;
}
.left-bar {
margin-top: 10px;
padding-left: 0 !important;
}
#chart {
margin-top: 20px;
}
.btn {
outline: none !important;
width: 100px;
}
.legends {
margin-top: 10px;
border: 1px solid black;
padding: 5px;
}
.legends > p {
font-size: 16px;
font-weight: 700 !important;
text-align: center;
}
.legends > label {
font-weight: 400 !important;
}