-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathglobals.css
More file actions
213 lines (182 loc) · 4.25 KB
/
globals.css
File metadata and controls
213 lines (182 loc) · 4.25 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
@import "tailwindcss";
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
:root {
--background: #000000;
--foreground: #00ff00;
--accent: #ffffff;
--border: #00ff00;
--muted: #008800;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: 'JetBrains Mono', monospace;
--font-mono: 'JetBrains Mono', monospace;
}
body {
background: var(--background);
color: var(--foreground);
font-family: 'JetBrains Mono', 'Courier New', monospace;
background-image:
radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
}
/* Utility class for white text */
.white-text {
color: #FFFFFF !important;
}
/* Hacker green defaults */
.hacker-text {
color: #00ff00;
}
.hacker-title {
font-family: 'Orbitron', monospace;
font-weight: 900;
color: #00ff00;
animation: glow 2s ease-in-out infinite alternate;
text-transform: uppercase;
letter-spacing: 2px;
}
.hacker-border {
border: 1px solid #00ff00;
box-shadow:
0 0 10px rgba(0, 255, 0, 0.3),
inset 0 0 10px rgba(0, 255, 0, 0.1);
}
/* Buttons */
.hacker-button {
background: linear-gradient(45deg, #000000, #001100);
border: 2px solid #00ff00;
color: #00ff00;
font-family: 'JetBrains Mono', monospace;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.hacker-button:hover {
background: linear-gradient(45deg, #001100, #002200);
box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
transform: translateY(-2px);
}
.hacker-button:disabled {
opacity: 0.5;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
/* Inputs */
.hacker-input {
background: #000000;
border: 1px solid #00ff00;
color: #00ff00;
font-family: 'JetBrains Mono', monospace;
}
.hacker-input:focus {
outline: none;
border-color: #00ff00;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
/* Animations */
@keyframes glow {
0%, 100% { text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00; }
50% { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; }
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
@keyframes matrix-rain {
0% { transform: translateY(-100%); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translateY(100vh); opacity: 0; }
}
/* Solana wallet adapter overrides (still green) */
.wallet-adapter-button {
background: black !important;
border: 2px solid #00ff00 !important;
color: #00ff00 !important;
font-family: 'JetBrains Mono', monospace !important;
font-weight: bold !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
}
/* Additional Animations */
@keyframes slide-in {
from {
opacity: 0;
transform: translateY(-8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes pulse-subtle {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
}
.animate-slide-in {
animation: slide-in 0.2s ease-out;
}
.animate-fade-in {
animation: fade-in 0.3s ease-out;
}
.animate-pulse-subtle {
animation: pulse-subtle 2s ease-in-out infinite;
}
/* Focus visible styles for accessibility */
:focus-visible {
outline: 2px solid rgba(0, 255, 0, 0.5);
outline-offset: 2px;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar for terminal aesthetic */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.3);
border-radius: 3px;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 255, 0, 0.3);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 255, 0, 0.5);
}
/* Selection styling */
::selection {
background: rgba(0, 255, 0, 0.3);
color: #00ff00;
}
/* Terminal cursor blink */
.terminal-cursor {
display: inline-block;
width: 8px;
height: 1.2em;
background: #00ff00;
animation: blink 1s step-end infinite;
vertical-align: text-bottom;
margin-left: 2px;
}