-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
90 lines (78 loc) · 1.47 KB
/
index.css
File metadata and controls
90 lines (78 loc) · 1.47 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
@import "tailwindcss";
@theme {
--color-bg-primary: #050505;
--color-text-primary: #ededed;
--color-text-secondary: #888888;
--color-border-color: #333333;
--font-sans: 'Inter', sans-serif;
--font-mono: monospace;
}
body {
font-family: 'Inter', sans-serif;
background-color: #050505;
color: #ededed;
}
/* Minimal Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #050505;
}
::-webkit-scrollbar-thumb {
background: #333;
}
/* Scroll animations */
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(48px);
filter: blur(4px);
}
to {
opacity: 1;
transform: translateY(0);
filter: blur(0);
}
}
.animate-fade-in-up {
animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-on-scroll {
opacity: 0;
}
.animate-on-scroll.is-visible {
animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Hero staggered entrance */
@keyframes hero-fade-in {
from {
opacity: 0;
transform: translateY(40px);
filter: blur(4px);
}
to {
opacity: 1;
transform: translateY(0);
filter: blur(0);
}
}
.animate-hero-fade-in {
animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
}
/* Page load fade-in */
@keyframes page-fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#root {
animation: page-fade-in 0.4s ease-out forwards;
}