-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
35 lines (28 loc) · 720 Bytes
/
Copy pathindex.css
File metadata and controls
35 lines (28 loc) · 720 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
/* Global styles for CoeurDesire */
html, body {
overflow-x: hidden;
}
#root {
overflow-x: hidden;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee {
display: flex;
animation: marquee 28s linear infinite;
will-change: transform;
}
.animate-marquee:hover {
animation-play-state: paused;
}
/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf8f6; }
::-webkit-scrollbar-thumb { background: #d2a594; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b8816c; }
/* Safe padding for mobile sticky bars */
.pb-safe {
padding-bottom: env(safe-area-inset-bottom, 0px);
}