-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 779 Bytes
/
style.css
File metadata and controls
41 lines (36 loc) · 779 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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
#map {
height: 100vh; /* 100% dell'altezza della finestra */
width: 100vw; /* 100% della larghezza della finestra */
}
/* Stile per la legenda */
.legend {
background-color: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
position: absolute;
top: 10px;
left: 10px;
z-index: 2000; /* Aumentato per garantire visibilità */
}
.legend h4 {
margin: 0;
font-size: 16px;
text-align: center;
}
.legend div {
margin: 5px 0;
display: flex;
align-items: center;
}
.legend span {
height: 20px;
width: 20px;
border: 1px solid #999;
margin-right: 5px;
}