-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap-style.css
119 lines (101 loc) · 2.31 KB
/
map-style.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
/* Popup */
.lh-mp-ctnr .directions-link {
float: right;
cursor: pointer;
font-size: large;
}
/* Marker */
.lh-mp-ctnr .cluster-marker div {
text-align: center;
position: absolute;
top: 5px;
width: 100%;
color: #fff;
}
/* Add link */
.lh-mp-ctnr .add-entry a {
display: inline-block;
background: #82b9ea;
padding: 0.7em;
border-radius: 10px;
color: #fff;
text-decoration: none;
font-size: larger;
}
.lh-mp-ctnr .add-entry a:hover {
background: #add7fc;
}
/* Select */
.lh-mp-ctnr form {
padding-left: 43pt;
}
.lh-mp-ctnr .leaflet-control-container .leaflet-bottom.leaflet-right {
margin-left: 56px;
}
.lh-mp-ctnr .select-wrapper {
position: relative;
/* width: 200px; */
}
.lh-mp-ctnr .select-wrapper::before {
color: #000;
font-size: 20px;
pointer-events: none;
position: absolute;
right: 15px;
top: 10px;
}
.lh-mp-ctnr select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background: #fff;
border: none;
border-radius: 3px;
box-shadow: 2px 2px 5px 1px rgba(0,0,0,.3);
color: #000;
cursor: pointer;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
height: 40px;
outline: none;
padding-left: 10px;
padding-right: 40px;
width: 100%;
}
.lh-mp-ctnr select option {
color: #666;
}
.lh-mp-ctnr select::-ms-expand {
display: none;
}
.lh-mp-ctnr select:focus::-ms-value {
background-color: transparent;
}
/* Loading */
.lh-mp-ctnr #loading {
position: absolute;
background: rgba(0, 0, 0, 0.534);
text-align: center;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
}
.lh-mp-ctnr .inner-circle {
fill: rgba(0, 0, 0, 0);
stroke: #fff;
stroke-width: 5;
stroke-dasharray: 150;
stroke-dashoffset: 50;
}
.lh-mp-ctnr .spinner {
position: relative;
top: 40%;
-webkit-animation:lh-mp-ctnr-spin 1s linear infinite;
-moz-animation:lh-mp-ctnr-spin 1s linear infinite;
animation:lh-mp-ctnr-spin 1s linear infinite;
}
@-moz-keyframes lh-mp-ctnr-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes lh-mp-ctnr-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes lh-mp-ctnr-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }