-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
115 lines (95 loc) · 1.85 KB
/
index.css
File metadata and controls
115 lines (95 loc) · 1.85 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--neon: #ff0066;
--neon-dim: #ff006688;
--neon-faint: #ff006644;
--neon-ghost: #ff006622;
--neon-whisper: #ff006611;
--neon-bg: #ff00660a;
--neon-border: #ff006633;
--bg-deep: #000000;
--bg-panel: #0a0005;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: var(--bg-deep);
font-family: 'JetBrains Mono', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
@keyframes scandown {
0% { top: -5%; }
100% { top: 105%; }
}
@keyframes fade-in {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 10px var(--neon); }
50% { box-shadow: 0 0 30px var(--neon), 0 0 60px var(--neon); }
}
@keyframes float-in {
from {
opacity: 0;
transform: translateY(12px) scale(0.98);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
@keyframes shimmer {
0% { background-position: -200% center; }
100% { background-position: 200% center; }
}
.animate-fade-in {
animation: fade-in 0.4s ease both;
}
.animate-float-in {
animation: float-in 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.animate-blink {
animation: blink 0.8s infinite;
}
.animate-scandown {
animation: scandown 7s linear infinite;
}
.animate-pulse-glow {
animation: pulse-glow 2s infinite;
}
textarea::placeholder {
color: #ff006633;
}
textarea:focus {
border-color: var(--neon-dim) !important;
box-shadow: 0 0 20px #ff006622;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
background: var(--neon-border);
}
::selection {
background: #ff006644;
color: #fff;
}