-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlegends.html
More file actions
139 lines (132 loc) · 3.4 KB
/
legends.html
File metadata and controls
139 lines (132 loc) · 3.4 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<html>
<head>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Rokkitt:400,700" />
<style>
/* Style the layer switcher here (maybe not radio buttons?)*/
body {
font-family: 'Rokkitt', serif;
font-size: 18px !important ;
}
td {
width: 40px;
}
</style>
</head>
<body>
<div class="container">
<!-- multiple category -->
<!--<div class="row">
<div class="col-md-3 col-md-offset-3">
<table class="table">
<tr>
<td colspan="7"><strong>Health Outcomes - % Affected</strong></td>
</tr>
<tr>
<td style="background-color:#f9f9f9"> </td>
<td style="background-color:#ded6e9"> </td>
<td style="background-color:#beaed2"> </td>
<td style="background-color:#9e88bd"> </td>
<td style="background-color:#7e62a7"> </td>
<td style="background-color:#5d3e91"> </td>
<td style="background-color:#391b7b"> </td>
</tr>
<tr>
<td><i>Low</i></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><i>High</i></td>
</tr>
<tr>
<td style="background-color:#f9f9f9"> </td>
<td style="background-color:#D7FFA4"> </td>
<td style="background-color:#BEE78B"> </td>
<td style="background-color:#A5CE72"> </td>
<td style="background-color:#8BB458"> </td>
<td style="background-color:#729B3F"> </td>
<td style="background-color:#588125"> </td>
</tr>
<tr>
<td colspan="7"><strong>Tree Canopy - % Cover</strong></td>
</tr>
</table>
</div>
</div>-->
<!-- Positive health outcome -->
<div class="row">
<div class="col-md-3 col-md-offset-3">
<table class="table">
<tr>
<td colspan="7"><strong>% Affected</strong></td>
</tr>
<tr>
<td style="background-color:#ffffff"> </td>
<td style="background-color:#d4deec"> </td>
<td style="background-color:#a7bfd9"> </td>
<td style="background-color:#7a9fc7"> </td>
<td style="background-color:#4682b4"> </td>
</tr>
<tr>
<td><i>Low</i></td>
<td> </td>
<td> </td>
<td> </td>
<td><i>High</i></td>
</tr>
</table>
</div>
</div>
<!-- Negative health outcome -->
<div class="row">
<div class="col-md-3 col-md-offset-3">
<table class="table">
<tr>
<td colspan="7"><strong>% Affected</strong></td>
</tr>
<tr>
<td style="background-color:#ffffff"> </td>
<td style="background-color:#ffd6cd"> </td>
<td style="background-color:#ffac9b"> </td>
<td style="background-color:#ff7b68"> </td>
<td style="background-color:#ff3030"> </td>
</tr>
<tr>
<td><i>Low</i></td>
<td> </td>
<td> </td>
<td> </td>
<td><i>High</i></td>
</tr>
</table>
</div>
</div>
<!-- Tree cover -->
<div class="row">
<div class="col-md-3 col-md-offset-3">
<table class="table">
<tr>
<td colspan="7"><strong>% Tree Cover</strong></td>
</tr>
<tr>
<td style="background-color:#ffffff"> </td>
<td style="background-color:#e7f7cf"> </td>
<td style="background-color:#c1de9a"> </td>
<td style="background-color:#91b661"> </td>
<td style="background-color:#588125"> </td>
</tr>
<tr>
<td><i>Low</i></td>
<td> </td>
<td> </td>
<td> </td>
<td><i>High</i></td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>