-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapStyles.css
192 lines (177 loc) · 3.99 KB
/
mapStyles.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* leaflet's zoom - it's gotta be below my search */
.leaflet-control-zoom{
position: absolute;
float: left;
top: 30px;
}
/* Leaflet search plugin*/
.leaflet-container .leaflet-control-search {
position:relative;
float:left;
background:#fff;
color:black;
font-size: 20px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.8);
z-index:1000;
box-shadow: 0 1px 7px rgba(0,0,0,0.65);
margin-left: 12px;
margin-top: 3px;
}
.leaflet-control-search.search-exp {/*expanded*/
box-shadow: 0 1px 7px #999;
background: #fff;
}
.leaflet-control-search .search-input {
display:block;
float:left;
background: #fff;
border:1px solid #666;
border-radius:2px;
height:25px;
width: 400px;
padding:0 18px 0 2px;
margin:3px 0 3px 3px;
}
.leaflet-control-search.search-load .search-input {
background: url('') no-repeat center right #fff;
}
.leaflet-control-search.search-load .search-cancel {
visibility:hidden;
}
.leaflet-control-search .search-cancel {
display:block;
width:30px;
height:25px;
position:absolute;
right:22px;
margin:6px ;
background: url('search-icon.png') no-repeat 0 -46px;
text-decoration:none;
filter: alpha(opacity=80);
opacity: 0.8;
}
.leaflet-control-search .search-cancel:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.leaflet-control-search .search-cancel span {
display:none;/* comment for cancel button imageless */
font-size:30px;
line-height:15px;
color:#ccc;
font-weight:bold;
}
.leaflet-control-search .search-cancel:hover span {
color:#aaa;
}
.leaflet-control-search .search-button {
display:block;
float:left;
width:30px;
height:30px;
background: url('search-icon.png') no-repeat 4px 4px;
border-radius:4px;
}
.leaflet-control-search .search-button:hover {
background: url('search-icon.png') no-repeat 4px -20px;
}
.leaflet-control-search .search-tooltip {
position:absolute;
top:50%;
left:0;
float:left;
list-style: none;
padding-left: 0;
width:400px;
max-height:122px;
box-shadow: 1px 1px 6px rgba(0,0,0,0.4);
background-color: rgba(0, 0, 0, 0.25);
z-index:1010;
overflow-y:auto;
overflow-x:hidden;
cursor: pointer;
}
.leaflet-control-search .search-tip {
margin:2px;
padding:2px 4px;
display:block;
color:black;
background: #eee;
border-radius:.25em;
text-decoration:none;
white-space:nowrap;
vertical-align:center;
}
.leaflet-control-search .search-tip-select,
.leaflet-control-search .search-tip:hover,
.leaflet-control-search .search-button:hover {
background-color: #fff;
}
.leaflet-control-search .search-alert {
cursor:pointer;
clear:both;
font-size:.75em;
margin-bottom:5px;
padding:0 .25em;
color:#e00;
font-weight:bold;
border-radius:.25em;
}
.div.leaflet-control-layers-base:after{
background-color: black !important;
}
/* the instruction-type box on the bottom*/
.instructions {
padding: 4px 6px;
font: segoe ui;
background: white;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 5px;
font-family: segoe ui;
font-size: 1.13em;
max-width: 550px;
overflow: auto;
z-index: 9999;
}
#theX{
cursor:pointer;
position:absolute;
top:0px;
right:10px;
}
/* popup stuff */
.image img{
max-height:200px;
max-width: 320px;
}
.popup {
text-align:center;
color:black;
font-family: segoe ui;
font-size: 1.13em;
}
.popup .slideshow .image { display:none; }
.popup .slideshow .image.active { display:block; }
.popup .cycle {
padding:0px 0 0px;
}
.popup .cycle p.prev { float:left; }
.popup .cycle p.next { float:right;}
.popup .cycle p:hover, .popup .cycle a:hover {color:grey; cursor: pointer}
.popup .cycle a:hover {text-decoration:underline}
/* Everything else */
body { margin:0; padding:0; font-family: segoe ui !important; color:black !important; }
#map { position:absolute; top:0; bottom:0; width:100%; height:100%}
label{color:black; font-family: segoe ui; font-size: 1.13em;}
#loading{
position: absolute;
top: 20%;
left: 33%;
width: 33%;
margin-left: auto;
margin-right: auto;
vertical-align: middle;
}