-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
43 lines (34 loc) · 869 Bytes
/
index.css
File metadata and controls
43 lines (34 loc) · 869 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
@import "tailwindcss";
html {
scroll-behavior: smooth;
}
@theme {
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-serif: "Playfair Display", serif;
--color-gold: #d4af37;
}
@layer base {
body {
@apply bg-[#050505] text-[#e5e5e5] font-sans;
}
}
@layer components {
.gold-gradient {
background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}
.gold-text-gradient {
background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gold-glow {
box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
}
@keyframes fade-in {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fade-in 0.8s ease-out forwards;
}