-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (61 loc) · 1.54 KB
/
style.css
File metadata and controls
71 lines (61 loc) · 1.54 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
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#map {
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
}
/* Style the layer control for a more artistic look */
.leaflet-control-layers {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.leaflet-control-layers-expanded {
padding: 16px;
min-width: 200px;
}
.leaflet-control-layers label {
font-size: 14px;
margin: 8px 0;
cursor: pointer;
transition: all 0.2s ease;
}
.leaflet-control-layers label:hover {
color: #2196F3;
transform: translateX(2px);
}
.leaflet-control-layers-separator {
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin: 8px 0;
}
/* Emoji marker styling */
.emoji-marker {
background: none !important;
border: none !important;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
transition: all 0.2s ease;
cursor: pointer;
}
.emoji-marker:hover {
transform: scale(1.2);
filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}
/* Popup styling to match the artistic theme */
.leaflet-popup-content-wrapper {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.leaflet-popup-tip {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}