This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
152 lines (135 loc) · 3.08 KB
/
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
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
/*
* @author Flip
* @package ffMap
* @version 1.0
* @licenses CC-BY-SA Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz. https://creativecommons.org/licenses/by-sa/4.0/
*/
body {
min-height: 100%;
margin: 0;
padding: 0;
}
#mapView {
height: 90%;
top: 3px; }
.ffMarkerStyle {
margin-left: -20px;
margin-top: -20px;
width: 40px;
height: 40px;
transform: translate(803px, 423px);
z-index: 423;
}
#tabInfo {
float: right;
color: #000000/* #009ee0*/;
margin-top: 7px;
}
.ui-icon-close
{
background-image: url(./jquery-ui-1.11.2.custom/images/ui-icons_cd0a0a_256x240.png) !important;
}
/*show / Hide Layers*/
.menu-ui {
background:#fff;
position:absolute;
top:10px;right:10px;
z-index:1;
border-radius:3px;
width:120px;
border:1px solid rgba(0,0,0,0.4);
}
.menu-ui a {
font-size:13px;
color:#404040;
display:block;
margin:0;padding:0;
padding:10px;
text-decoration:none;
border-bottom:1px solid rgba(0,0,0,0.25);
text-align:center;
}
.menu-ui a:first-child {
border-radius:3px 3px 0 0;
}
.menu-ui a:last-child {
border:none;
border-radius:0 0 3px 3px;
}
.menu-ui a:hover {
background:#f8f8f8;
color:#404040;
}
.menu-ui a.active {
background:#009ee0;
color:#FFF;
}
.menu-ui a.active:hover {
background:#3074a4;
}
/*Marker Cluster Styles*/
.onlinemarker-cluster-small {
background-color: rgba(0, 158, 224, 0.4);
}
.onlinemarker-cluster-small div {
background-color: rgba(0, 158, 224, 0.6);
}
.onlinemarker-cluster-medium {
background-color: rgba(255, 180, 0, 0.4);
}
.onlinemarker-cluster-medium div {
background-color: rgba(255, 180, 0, 0.6);
}
.onlinemarker-cluster-large {
background-color: rgba(220, 0, 103, 0.3);
}
.onlinemarker-cluster-large div {
background-color: rgba(220, 0, 103, 0.6);
}
.offlinemarker-cluster {
background-color: rgba(131, 139, 139, 0.3);
}
.offlinemarker-cluster div {
background-color: rgba(131, 139, 139, 0.6);
}
/* IE 6-8 fallback colors */
.leaflet-oldie .onlinemarker-cluster-small {
background-color: rgb(181, 226, 140);
}
.leaflet-oldie .onlinemarker-cluster-small div {
background-color: rgb(110, 204, 57);
}
.leaflet-oldie .onlinemarker-cluster-medium {
background-color: rgb(241, 211, 87);
}
.leaflet-oldie .onlinemarker-cluster-medium div {
background-color: rgb(240, 194, 12);
}
.leaflet-oldie .onlinemarker-cluster-large {
background-color: rgb(253, 156, 115);
}
.leaflet-oldie .onlinemarker-cluster-large div {
background-color: rgb(241, 128, 23);
}
.leaflet-oldie .offlinemarker-cluster {
background-color: rgb(131, 139, 139);
}
.leaflet-oldie .offlinemarker-cluster div {
background-color: rgb(131, 139, 139);
}
.marker-cluster {
background-clip: padding-box;
border-radius: 20px;
}
.marker-cluster div {
width: 30px;
height: 30px;
margin-left: 5px;
margin-top: 5px;
text-align: center;
border-radius: 15px;
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster span {
line-height: 30px;
}