-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweatherHourly.css
125 lines (104 loc) · 1.58 KB
/
weatherHourly.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
body {
background-color: #3F3F3F;
font-family: 'Raleway', sans-serif;
}
p {
color: white;
font-size: 14px;
}
.dailyLines {
fill: none;
}
.title {
font: 20px;
fill: white;
}
.hidden {
display: none;
}
#metric {
position: absolute;
top: 30px;
left: 680px;
width: auto;
height: auto;
}
#colorSelector {
position: absolute;
top: 55px;
left: 680px;
width: auto;
height: auto;
}
#instructions {
position: absolute;
top: 10px;
left: 45px;
width: 600px;
height: auto;
}
#instructions p {
line-height: 12px;
color: white;
font-size: 26px;
}
#infoHeader {
text-decoration: underline;
}
#datasource {
font-style: italic;
position: absolute;
top: 900px;
left: 45px;
}
#citySelection {
position: absolute;
}
.map {
fill: white;
stroke: none;
}
.cities {
fill: #FF7F15;
}
.citiesBackground:hover {
opacity: 1;
}
.citiesForeground:hover {
stroke: #FF7F15;
stroke-width: 8;
}
.monthLegend {
font-size: 16px;
}
.selectedMonth {
opacity: .5;
}
.unselectedMonth {
opacity: .05;
}
.circleLegend {
fill: none;
stroke: white;
stroke-width: 1px;
}
#tooltip {
position: absolute;
width: auto;
height: auto;
padding: 5px 5px;
font-weight: 400;
background-color: rgba(255, 255, 255, 0.6);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
pointer-events: none;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; /* future proofing */
}
#tooltip p {
margin: 0;
line-height: 20px;
color: black;
}