-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
51 lines (44 loc) · 773 Bytes
/
Copy pathmain.css
File metadata and controls
51 lines (44 loc) · 773 Bytes
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
body {
text-align: center;
font-family: sans-serif;
}
.controls {
position: absolute;
top: 0;
left: 50%;
z-index: 999;
padding-top: 5px;
transform: translate(-50%, 0%);
}
.controls button {
border: 2px solid #a8a8a8;
outline: none;
background-color: white;
font-size: 110%;
height: 30px;
border-radius: 6px;
font-weight: bold;
}
#timestamp {
margin-top: 2px;
padding: 2px;
border-radius: 6px;
border: 1px black solid;
font-weight: bold;
}
#timestamp.past {
background-color: #8aa5ce
}
#timestamp.future {
background-color: #ad8ace
}
#mapid {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.leaflet-control-attribution {
font-size: x-small;
}