-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.css
112 lines (88 loc) · 2.89 KB
/
index.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
.reading-info--is-good .leaflet-popup-content-wrapper,
.reading-info--is-good .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-good {
background-color: #A2DC61;
}
.reading-info--is-moderate .leaflet-popup-content-wrapper,
.reading-info--is-moderate .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-moderate {
background-color: #FBD651;
}
.reading-info--is-sensitive .leaflet-popup-content-wrapper,
.reading-info--is-sensitive .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-sensitive {
background-color: #FD9A57;
}
.reading-info--is-unhealthy .leaflet-popup-content-wrapper,
.reading-info--is-unhealthy .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-unhealthy {
background-color: #FF6A6E;
}
.reading-info--is-very-unhealthy .leaflet-popup-content-wrapper,
.reading-info--is-very-unhealthy .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-very-unhealthy {
background-color: #A97BBC;
}
.reading-info--is-dangerous .leaflet-popup-content-wrapper,
.reading-info--is-dangerous .leaflet-popup-tip,
.leaflet-tooltip.reading-info--is-dangerous {
background-color: #9B5974;
}
.reading-info--is-good.leaflet-tooltip {
border: #639c22 solid 1px !important;
}
.reading-info--is-good.leaflet-tooltip-left:before {
border-left-color: #639c22 !important;
}
.reading-info--is-good.leaflet-tooltip-right:before {
border-right-color: #639c22 !important;
}
.reading-info--is-moderate.leaflet-tooltip {
border: #C39A04 solid 1px !important;
}
.reading-info--is-moderate.leaflet-tooltip-left:before {
border-left-color: #C39A04 !important;
}
.reading-info--is-moderate.leaflet-tooltip-right:before {
border-right-color: #C39A04 !important;
}
.reading-info--is-sensitive.leaflet-tooltip {
border: #CB5202 solid 1px !important;
}
.reading-info--is-sensitive.leaflet-tooltip-left:before {
border-left-color: #CB5202 !important;
}
.reading-info--is-sensitive.leaflet-tooltip-right:before {
border-right-color: #CB5202 !important;
}
.reading-info--is-unhealthy.leaflet-tooltip {
border: #D90007 solid 1px !important;
}
.reading-info--is-unhealthy.leaflet-tooltip-left:before {
border-left-color: #D90007 !important;
}
.reading-info--is-unhealthy.leaflet-tooltip-right:before {
border-right-color: #D90007 !important;
}
.reading-info--is-very-unhealthy.leaflet-tooltip {
border: #6A3F7C solid 1px !important;
}
.reading-info--is-very-unhealthy.leaflet-tooltip-left:before {
border-left-color: #6A3F7C !important;
}
.reading-info--is-very-unhealthy.leaflet-tooltip-right:before {
border-right-color: #6A3F7C !important;
}
.reading-info--is-dangerous.leaflet-tooltip {
background-color: #9B5974 !important;
border: #5D3646 solid 1px !important;
}
.reading-info--is-dangerous.leaflet-tooltip-left:before {
border-left-color: #5D3646 !important;
}
.reading-info--is-dangerous.leaflet-tooltip-right:before {
border-right-color: #5D3646 !important;
}
.leaflet-tooltip h1 {
font-weight: bold;
}