-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
46 lines (41 loc) · 1001 Bytes
/
index.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
:root {
--overlay-width: 300px;
--overlay-padding: 15px;
--primary-color: #A4CEFF;
--grey: #C7C7C7;
--streetlight-color: #F3F492;
--link-color: #939470;
}
body {
margin: 0px;
border: 0px;
padding: 0px;
font-family: Open Sans;
font-size: 12px;
}
#overlay a:link {color: var(--link-color); text-decoration: underline; }
#overlay a:active {color: var(--link-color); text-decoration: underline; }
#overlay a:visited {color: var(--link-color); text-decoration: underline; }
#overlay a:hover { color: var(--link-color); text-decoration: underline; }
#map {
height: 100%;
width: 100%;
position: absolute;
}
#overlay {
background: #181A1A;
width: var(--overlay-width);
color: white;
bottom: 0;
left: 0;
margin: 15px;
padding: var(--overlay-padding);
z-index: 10000;
position: absolute;
border-radius: 3px;
}
#overlay-title {
color: var(--streetlight-color);
font-weight: bold;
font-size: 18px;
}