-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (65 loc) · 1.3 KB
/
Copy pathstyles.css
File metadata and controls
73 lines (65 loc) · 1.3 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
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#root {
height: 100%;
}
body {
font-feature-settings: "cv11", "ss01", "ss02";
background: #fafafa;
color: #0a0a0b;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.font-mono {
font-variant-numeric: tabular-nums;
}
.font-display {
font-feature-settings: "ss01", "ss02", "cv11";
}
/* slim, neutral scrollbars */
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-thumb {
background: #e8e8eb;
border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
background: #c8c8cc;
}
*::-webkit-scrollbar-track {
background: transparent;
}
.leaflet-tile-pane {
filter: saturate(0.78);
}
.leaflet-container {
background: #f4f4f5 !important;
font-family: inherit !important;
}
.leaflet-bar a,
.leaflet-bar a:hover {
width: 36px !important;
height: 36px !important;
line-height: 36px !important;
font-size: 18px !important;
}
/* Stagger helper: each .stagger-item gets its own delay via inline style. */
.stagger-item {
animation: fade-rise 0.5s cubic-bezier(0.2, 0.6, 0.2, 1) both;
animation-delay: var(--stagger-delay, 0ms);
}
@keyframes fade-rise {
from {
opacity: 0;
transform: translateY(4px);
}
to {
opacity: 1;
transform: translateY(0);
}
}