-
Notifications
You must be signed in to change notification settings - Fork 8
/
wlm-maps.css
89 lines (89 loc) · 1.67 KB
/
wlm-maps.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
html{
height: 100%;
}
body{
font-family:"dejavu sans","arial",sans-Serif;
font-size: 82%;
margin: 2px;
height:100%;
overflow: hidden;
}
#mapdiv {
width:100%;
height:100%;
border: solid 0px black;
}
.overlay {
position:absolute;
padding: 6px 8px;
font: 18px Arial, Helvetica, sans-serif;
color: #223;
background-color:rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
#wait {
bottom: 145px;
right: 175px;
display: none;
background-color:rgba(255,100,100,0.8);
}
#menu-button {
bottom: 50px;
left: 40px;
display: block;
color: white;
background-color:rgba(100,100,255,0.8);
}
#csv-button {
bottom: 50px;
left: 200px;
display: block;
color: white;
background-color: pink;
}
#gallery-div {
position: absolute;
bottom: 25px;
right: 175px;
border: 2px solid green;
height: 100px;
overflow: hidden;
background-color: green;
}
#gallery-table {
background-color: green;
}
#notice {
position: absolute;
bottom: 200px;
right: 15px;
display: block;
background-color: lightgreen;
width: 150px;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
padding: 6px 8px;
}
#share {
position: absolute;
bottom: 185px;
right: 12px;
display: block;
background-color: lightgreen;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
padding: 6px 8px;
}
.title {
top:15px;
left:50px;
font: 20px Arial, Helvetica, sans-serif;
font-weight: bold;
color: white;
background-color:#A50308;
text-align: center;
}
a {
text-decoration: none;
}