-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (109 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
120 lines (109 loc) · 1.67 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
111
112
113
114
115
116
117
118
119
120
/* General */
* {
font-family: Arial;
}
h1 {
text-align: center;
color: #333333;
}
body {
margin: 0px;
overflow: visible;
background-color: #e7e7e7;
color: #333333;
}
/* Menus */
#menus {
display: flex;
justify-content: start;
margin-top: 10px;
margin-left: 30px;
margin-right: 30px;
}
g#Year {
margin-left: 20px;
}
.slider,
.dropdown {
vertical-align: middle;
}
button.play-toggle {
margin-left: 8px;
padding: 2px 8px;
font-size: 12px;
cursor: pointer;
}
/* Contains SVGs */
.svg-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
/* Choropleth Map & Checkboxes */
svg#map {
height: 500px;
width: 960px;
}
.sphere {
fill: #898989;
}
.country,
.checkbox {
stroke: #333333;
stroke-linecap: 'round';
stroke-width: 0.1px;
}
.selected {
stroke: #333333;
stroke-linecap: 'round';
stroke-width: 2px;
}
/* Line Chart */
svg#line {
height: 500px;
width: 450px;
}
/* Legend */
svg#legend {
height: 2500px;
width: 100px;
overflow-y: scroll;
}
div#legend-container {
height: 500px;
width: 120px;
overflow-x: visible;
overflow-y: scroll;
}
/* Descriptions */
#descriptions {
margin-top: 10px;
margin-left: 30px;
margin-right: 30px;
border-top: 2px solid #333333;
padding-top: 5px;
}
/* Tooltip */
#tooltip {
position: absolute;
display: none;
background: #e7e7e7;
box-shadow: 3px 3px 3px 0px rgb(92 92 92 / 0.5);
border-bottom: 5px solid;
font-size: 12px;
font-weight: 500;
padding: 8px;
min-width: 100px;
}
.tooltip-title {
font-size: 14px;
font-weight: 600;
}
#tooltip ul {
margin: 5px 0 0 0;
padding-left: 20px;
}
#credits {
margin-left: 30px;
}