forked from recoded-co/coinmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 716 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 716 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
52
body {
border: 0px;
margin: 0px;
padding: 0px;
}
#map {
left: 0px;
top: 0px;
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}
#logo {
right: 10px;
top: 10px;
position: absolute;
z-index: 7;
font-size: xx-large;
font-style: italic;
}
#footer {
font-size: 13px;
position: absolute;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 5px #bbb;
padding: 0 5px;
color: #333;
z-index: 7;
left: 0px;
bottom: 0px;
line-height: 200%;
}
a {
color: #0078A8;
}
img.leaflet-marker-icon {
box-shadow: 0px 0px 16px #000000;
border-radius: 12px;
}
/* hides footer in small screen */
@media (max-width: 780px) {
#footer {
display: none;
}
}