-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
74 lines (60 loc) · 1.46 KB
/
index.css
File metadata and controls
74 lines (60 loc) · 1.46 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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom styles */
body {
font-family: 'Inter', sans-serif;
background-color: #000000; /* Black background */
color: #e5e7eb; /* Default light gray text */
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #059669;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #047857;
}
::selection {
background-color: #059669;
color: #000000;
}
::-moz-selection {
background-color: #059669;
color: #000000;
}
.animate-fadeIn {
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(10px); }
100% { opacity: 1; transform: translateY(0px); }
}
.confetti-piece {
position: absolute;
width: 8px;
height: 16px;
background-color: #facc15; /* yellow-400 */
opacity: 0;
animation: fall 3s ease-out forwards;
}
.confetti-piece:nth-child(2n) { background-color: #4ade80; /* green-400 */ }
.confetti-piece:nth-child(3n) { background-color: #60a5fa; /* blue-400 */ }
.confetti-piece:nth-child(4n) { background-color: #f472b6; /* pink-400 */ }
@keyframes fall {
0% { transform: translateY(-10vh) rotateZ(0deg); opacity: 1; }
100% { transform: translateY(100vh) rotateZ(720deg); opacity: 0; }
}
@keyframes flash {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.animate-flash {
animation: flash 1.5s infinite ease-in-out;
}