-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcoordman.css
64 lines (61 loc) · 1022 Bytes
/
coordman.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
body {
font-family: Lato, Open Sans, Arial;
color: #454851;
font-size: 16px;
margin: 1vh;
}
#map {
height: 98vh;
border-radius: 5px;
}
.leaflet-popup .leaflet-popup-content {
width: 500px;
}
.leaflet-popup-content img {
max-width: 100%;
}
#coords {
position: absolute;
left: 50%;
bottom: 20px;
}
#coordstext {
background-color: brown;
color: white;
border-radius: 5px;
position: relative;
left: -50%;
z-index: 1001;
font-family: monospace;
font-size: 24px;
padding: 1px 5px 1px 5px;
}
#sidebar {
position: fixed;
z-index: 1000;
top: 0;
right: 0;
height: 100%;
width: 0;
transition: 0.5s;
background-color: white;
border-color: black;
border-width: 2px;
overflow-x: hidden;
flex-direction: column;
justify-content: center;
text-align: center;
}
#sidebar a {
text-decoration: none;
color: blue;
}
.closebtn {
color: black!important;
position: absolute;
top: 0;
left: 5px;
font-size: 36px;
margin-right: 50px;
text-decoration: none;
}