-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (81 loc) · 1.52 KB
/
style.css
File metadata and controls
94 lines (81 loc) · 1.52 KB
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
90
91
92
93
94
html, body {
overflow: hidden;
}
.slider-container {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
background-color: rgba(255, 255, 255, 0);
padding: 10px;
border-radius: 8px;
width: 90%;
display: flex;
}
#timeSlider {
width: 90%;
margin-right: 10px;
}
#timeLabel {
font-weight: bold;
}
.ol-popup {
position: absolute;
background-color: white;
padding: 15px;
border-radius: 10px;
border: 1px solid #ccc;
bottom: 12px;
left: -50px;
min-width: 200px;
}
.ol-popup:after, .ol-popup:before {
top: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.ol-popup:after {
border-top-color: white;
border-width: 10px;
left: 48px;
margin-left: -10px;
}
.ol-popup:before {
border-top-color: #ccc;
border-width: 11px;
left: 48px;
margin-left: -11px;
}
#sidebar {
position: absolute;
top: 20px;
right: 20px;
z-index: 1000; /* Ensure the sidebar is on top of the map */
background: white;
padding: 10px;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
#sidebar button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 5px;
border: none;
border-radius: 4px;
background: #007bff;
color: white;
font-size: 16px;
cursor: pointer;
}
#sidebar button:hover {
background: #0056b3;
}
#downloadCsv {
height: 30px
}