-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
167 lines (138 loc) · 2.6 KB
/
index.css
File metadata and controls
167 lines (138 loc) · 2.6 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
/* Kali Blue for CRT effects */
--primary-blue: 33, 150, 243;
}
.dark {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
}
html,
body,
#root {
@apply h-full w-full overflow-hidden m-0 p-0 overscroll-none;
}
* {
@apply border-gray-800;
}
body {
@apply bg-background text-foreground font-sans antialiased;
}
}
/* Terminal cursor blink */
@keyframes blink {
0%,
50% {
opacity: 1;
}
51%,
100% {
opacity: 0;
}
}
.cursor-blink {
animation: blink 1s step-end infinite;
}
/* Boot text typing effect */
@keyframes typewriter {
from {
width: 0;
}
to {
width: 100%;
}
}
.typing-effect {
overflow: hidden;
white-space: nowrap;
animation: typewriter 0.5s steps(40) forwards;
}
/* Scanline effect */
@keyframes scanline {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(100vh);
}
}
.scanline {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(to bottom,
transparent,
rgba(33, 150, 243, 0.2),
transparent);
animation: scanline 8s linear infinite;
pointer-events: none;
z-index: 9999;
}
/* CRT glow effect */
.crt-glow {
text-shadow:
0 0 5px rgba(33, 150, 243, 0.5),
0 0 10px rgba(33, 150, 243, 0.3),
0 0 20px rgba(33, 150, 243, 0.2);
}
/* Window animations */
@keyframes windowOpen {
from {
opacity: 0;
transform: scale(0.95) translateY(10px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
@keyframes windowClose {
from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0;
transform: scale(0.95);
}
}
.window-open {
animation: windowOpen 0.2s ease-out forwards;
}
.window-close {
animation: windowClose 0.15s ease-in forwards;
}
/* Boot fade in */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}