-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 802 Bytes
/
style.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
header {
background-color: #fff;
color: #333;
text-align: center;
padding: 10px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#map {
height: 600px;
margin:5px
}
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ICONS */
.github-icon {
height: 24px;
transition: transform 0.3s ease;
}
.github-icon:hover {
transform: scale(1.2);
}
/* LEGEND */
.info.legend {
background-color: white;
border: 1px solid #333;
padding: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.2); /* Add a shadow */
}
.info.legend img {
width: 32px;
height: 32px;
}
.legend-item {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.legend-icon {
margin-right: 8px;
}