-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 923 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (49 loc) · 923 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
* {
touch-action: none;
}
body {
margin: 0;
padding: 0;
}
#map {
width: 100dvw;
height: 100dvh;
}
.github-link {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 1000;
color: #fff;
padding: 0.75rem;
transition: opacity 0.2s ease;
text-decoration: none;
}
.github-link:hover {
opacity: 0.7;
}
.cat-popup .maplibregl-popup-content {
background: #1a1a1a;
border: 1px solid #333;
border-radius: 0.75rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
padding: 0;
}
.cat-popup {
opacity: 0;
transition: opacity 0.4s ease-out;
pointer-events: none;
}
.cat-popup .maplibregl-popup-content,
.cat-popup .maplibregl-popup-tip {
transform: translateY(-30px);
transition: transform 0.6s ease-out;
pointer-events: none;
}
.cat-popup.fade-in {
opacity: 1;
}
.cat-popup.fade-in .maplibregl-popup-content,
.cat-popup.fade-in .maplibregl-popup-tip {
transform: translateY(0px);
}