-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (98 loc) · 1.82 KB
/
style.css
File metadata and controls
104 lines (98 loc) · 1.82 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
html, body {
margin: 0;
padding: 0;
}
.interactiveContainer {
width: 100vw;
height: 100vh;
font-family: Arial, sans-serif;
}
/* Edit height to display full map: 500px */
#map {
width: 100vw;
height: calc(100vh - 96px);
margin: 0;
padding: 0;
}
.tabBar {
font: 14px/16px Arial, Helvetica, sans-serif;
height: 30px;
}
/* Edit width based on number of tabs to display
In this example, width = 100% divided by 13 = 7.6% */
.tabItem {
width: 7.6%;
padding: 2px 0px 2px 0px;
float: left;
margin-left: -1px;
border: #aaa solid 1px;
border-right: none;
cursor: pointer;
text-align: center;
font-size: 15px;
font-weight: normal;
color: #ccc;
}
.tabItem:first-child {
border-radius: 7px 0px 0 7px;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.tabItem:last-child {
border-radius: 0px 7px 7px 0px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-right: 1px solid #aaa;
}
.tabItem:hover {
color: blue;
}
.tabItem.selected {
color: blue;
background: #eee;
box-shadow: inset 1px 1px 7px -2px #555;
color: white !important;
font-weight: 400;
border: 1px solid blue !important;
background: blue !important;
pointer-events: none;
}
.areaName {
font-size: 17px;
font-weight: bold;
margin-bottom: 10px;
}
.faded {
opacity: 0.4;
}
.areaLabel {
float: left;
width: 100%;
font-family: Arial, sans-serif;
}
.areaValue {
float: left;
width: 70%;
font-size: 14px;
font-family: Arial, sans-serif;
}
/*Edit width of legend*/
.legend {
width: 200px;
position: absolute;
right: 0px;
bottom: 10px;
}
h3 {
margin: 4px 0;
}
header > p {
margin: 4px 0;
}
header {
padding: 8px;
height: 80px !important;
}
.leaflet-interactive:hover {
opacity: 0.7;
}