-
Notifications
You must be signed in to change notification settings - Fork 1
/
leaflet.timeline.css
93 lines (92 loc) · 2.72 KB
/
leaflet.timeline.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
.leaflet-control.leaflet-timeline-control {
width: 96%;
box-sizing: border-box;
margin: 2%;
margin-bottom: 20px;
text-align: center;
}
.leaflet-control.leaflet-timeline-control * {
vertical-align: middle;
}
.leaflet-control.leaflet-timeline-control input[type=range] {
width: 100%;
margin-left: auto;
margin-right: auto;
}
.leaflet-control.leaflet-timeline-control .sldr-ctrl-container {
float: left;
width: 15%;
box-sizing: border-box;
}
.leaflet-control.leaflet-timeline-control .button-container button {
position: relative;
width: 20%;
height: 20px;
}
.leaflet-control.leaflet-timeline-control .button-container button::before, .leaflet-control.leaflet-timeline-control .button-container button::after {
content: "";
position: absolute;
}
.leaflet-control.leaflet-timeline-control .button-container button.play::before {
border: 7px solid transparent;
border-width: 7px 0 7px 10px;
border-left-color: black;
margin-top: -7px;
background: transparent;
margin-left: -5px;
}
.leaflet-control.leaflet-timeline-control .button-container button.pause {
display: none;
}
.leaflet-control.leaflet-timeline-control .button-container button.pause::before {
width: 4px;
height: 14px;
border: 4px solid black;
border-width: 0 4px;
margin-top: -7px;
margin-left: -6px;
background: transparent;
}
.leaflet-control.leaflet-timeline-control .button-container button.prev::before, .leaflet-control.leaflet-timeline-control .button-container button.prev::after {
margin: -8px 0 0;
background: black;
}
.leaflet-control.leaflet-timeline-control .button-container button.prev::before {
width: 2px;
height: 14px;
margin-top: -7px;
margin-left: -7px;
}
.leaflet-control.leaflet-timeline-control .button-container button.prev::after {
border: 7px solid transparent;
border-width: 7px 10px 7px 0;
border-right-color: black;
margin-top: -7px;
margin-left: -5px;
background: transparent;
}
.leaflet-control.leaflet-timeline-control .button-container button.next::before, .leaflet-control.leaflet-timeline-control .button-container button.next::after {
margin: -8px 0 0;
background: black;
}
.leaflet-control.leaflet-timeline-control .button-container button.next::before {
width: 2px;
height: 14px;
margin-top: -7px;
margin-left: 5px;
}
.leaflet-control.leaflet-timeline-control .button-container button.next::after {
border: 7px solid transparent;
border-width: 7px 0 7px 10px;
border-left-color: black;
margin-top: -7px;
margin-left: -5px;
background: transparent;
}
.leaflet-control.leaflet-timeline-control.playing button.pause {
display: inline-block;
}
.leaflet-control.leaflet-timeline-control.playing button.play {
display: none;
}
/*# sourceMappingURL=leaflet.timeline.css.map */