-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleaflet-coupled-layers.css
57 lines (49 loc) · 1.16 KB
/
leaflet-coupled-layers.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
/* LAYERS CONTROL*/
.control-coupled-layers {
font-family: 'Source Sans Pro', sans-serif;
font-size: 14px;
background: #FFFFFF;
color: #777;
box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.50);
border-radius: 5px;
text-transform: uppercase;
line-height: 26px;
}
.control-coupled-layers-toggle {
text-align: center;
padding: 0 1em;
display: block;
cursor: pointer;
}
.control-coupled-layers .control-coupled-layers-list {
height: 0px;
border-top: none;
opacity: 0;
overflow: hidden;
}
.control-coupled-layers-expanded .control-coupled-layers-list {
height: auto;
position: relative;
visibility: visible;
opacity: 1;
}
.control-coupled-layers label {
display: block;
cursor: pointer;
padding: 0 1em;
font-weight: normal !important;
margin: 0 !important;
}
.control-coupled-layers .control-coupled-layers-selector {
display: none;
}
.control-coupled-layers .control-coupled-layers-selector:checked ~ label {
color: #222222;
background-color: #E0E0E0;
}
.control-coupled-layers-separator {
border-top: 1px solid #777;
}
.control-coupled-layers-last > .weather-layer-container:last-of-type label {
border-radius: 0 0 5px 5px;
}