-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
83 lines (72 loc) · 1.23 KB
/
styles.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
body, html {
margin: 0;
padding: 0;
height: 100%;
}
#map {
width: 100%;
height: 100%;
}
#menu-bar {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
#menu-bar ul {
list-style: none;
margin: 0;
padding: 0;
}
#menu-bar li {
display: inline;
margin: 0 15px;
}
#menu-bar a {
text-decoration: none;
color: white;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1000;
}
.overlay-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border-radius: 5px;
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 18px;
text-decoration: none;
color: black;
}
.ol-popup {
position: absolute;
background-color: white;
box-shadow: 0 1px 4px rgba(0,0,0,0.2);
padding: 15px;
border-radius: 10px;
border: 1px solid #ccc;
}
.ol-popup-closer {
position: absolute;
top: 5px;
right: 5px;
font-size: 14px;
font-weight: bold;
text-decoration: none;
color: #333;
}