-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (107 loc) · 1.93 KB
/
style.css
File metadata and controls
118 lines (107 loc) · 1.93 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@import "node_modules/ol/ol.css";
@import "node_modules/ol-layerswitcher/dist/ol-layerswitcher.css";
.banner {
display: flex;
justify-content: space-between;
align-items: left;
background-color: #f2f2f2;
padding: 10px;
position: absolute;
top: 0;
width: 100%;
}
.banner h1 {
margin: 0;
text-justify: center;
}
.banner button {
background-color: #4caf50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
body {
font-family: 'Fira Code', monospace;
}
#left-panel {
float: left;
width: 25%;
height: 100%;
text-align: center;
}
#right-panel {
float: right;
width: 75%;
height: 100%;
}
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 20%;
padding: 20px;
background-color: #eeeeee;
}
html, body {
margin: 0;
height: 100%;
}
/* Style the dropdown button */
.dropbtn {
background-color: #ccc;
color: black;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Style the dropdown content */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Style the options inside the dropdown */
.dropdown-content button {
color: black;
padding: 10px 20px;
text-decoration: none;
display: block;
}
/* Style the options inside the dropdown on hover */
.dropdown-content button:hover {
background-color: #ddd;
}
/* Style the active option */
.dropdown-content button.active {
background-color: #4CAF50;
color: white;
}
/* Show the dropdown content when the dropdown button is clicked */
.show {
display: block;
}
.layer-div{
visibility: hidden;
text-align: left;
margin-left: 10%;
}
#map {
position: fixed;
left: 25%;
top: 0;
bottom: 0;
width: 75%;
}
/* Limit the width of the layer-switcher */
.layer-switcher {
max-width: 300px;
text-align: left;
}