-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
357 lines (317 loc) · 11.2 KB
/
Copy pathindex.html
File metadata and controls
357 lines (317 loc) · 11.2 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Christopher Wilson — minimal root landing page with a clear path to the full portfolio and resume."
/>
<link rel="icon" href="/favicon.svg" type="image/svg+xml"/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
<title>Christopher Wilson</title>
<style>
:root {
color-scheme: dark;
--bg: #060816;
--bg-alt: #11182b;
--panel: rgba(10, 15, 30, 0.72);
--panel-border: rgba(120, 138, 255, 0.18);
--text: #e6edf7;
--muted: #9fb0c8;
--cyan: #72e7ff;
--pink: #ff5bbd;
--violet: #8a6dff;
}
* { box-sizing: border-box; }
/* ── Rainbow scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #ff5bbd, #8a6dff, #72e7ff);
border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #ff7cd6, #a38dff, #94f0ff);
}
body {
margin: 0;
min-height: 100vh;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background:
radial-gradient(circle at top left, rgba(114, 231, 255, 0.16), transparent 34%),
radial-gradient(circle at bottom right, rgba(255, 91, 189, 0.18), transparent 32%),
linear-gradient(155deg, var(--bg) 0%, #0a1020 52%, var(--bg-alt) 100%);
color: var(--text);
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #8a6dff #060816;
}
body::before,
body::after {
content: "";
position: fixed;
inset: auto;
width: 18rem;
height: 18rem;
border-radius: 50%;
filter: blur(48px);
opacity: 0.22;
pointer-events: none;
animation: drift 14s ease-in-out infinite;
}
body::before {
top: -4rem;
left: -4rem;
background: rgba(114, 231, 255, 0.75);
}
body::after {
right: -6rem;
bottom: -6rem;
background: rgba(255, 91, 189, 0.7);
animation-delay: -7s;
}
main {
min-height: 100vh;
display: grid;
place-items: center;
padding: 2rem;
position: relative;
}
section {
width: min(100%, 42rem);
text-align: center;
position: relative;
padding: 3rem clamp(1.5rem, 5vw, 3rem);
border-radius: 28px;
background: var(--panel);
border: 1px solid var(--panel-border);
backdrop-filter: blur(18px);
box-shadow:
0 22px 60px rgba(2, 6, 23, 0.48),
0 0 0 1px rgba(255, 255, 255, 0.03) inset,
0 0 36px rgba(114, 231, 255, 0.08);
}
section::before {
content: "";
position: absolute;
top: 0;
left: 12%;
width: 76%;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(114, 231, 255, 0), rgba(114, 231, 255, 0.9), rgba(255, 91, 189, 0.85), rgba(114, 231, 255, 0));
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.45rem 0.85rem;
border-radius: 999px;
background: rgba(114, 231, 255, 0.08);
border: 1px solid rgba(114, 231, 255, 0.14);
color: var(--cyan);
letter-spacing: 0.12em;
text-transform: uppercase;
font-size: 0.72rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
h1 {
margin: 1.3rem 0 0.9rem;
font-size: clamp(2.5rem, 7vw, 4.5rem);
line-height: 0.95;
letter-spacing: -0.04em;
}
.accent {
background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 42%, #d8c8ff 70%, #ffffff 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 0 24px rgba(114, 231, 255, 0.12);
}
p {
margin: 0 auto;
max-width: 32rem;
color: var(--muted);
font-size: 1.05rem;
line-height: 1.7;
}
.cta {
display: inline-block;
margin-top: 1.5rem;
padding: 0.95rem 1.4rem;
border-radius: 999px;
background: linear-gradient(135deg, rgba(255, 91, 189, 0.95), rgba(114, 231, 255, 0.92));
color: #071423;
text-decoration: none;
font-weight: 800;
letter-spacing: 0.01em;
box-shadow: 0 14px 28px rgba(114, 231, 255, 0.16), 0 10px 24px rgba(255, 91, 189, 0.18);
transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.cta:hover,
.cta:focus-visible {
transform: translateY(-2px);
box-shadow: 0 18px 36px rgba(114, 231, 255, 0.22), 0 14px 32px rgba(255, 91, 189, 0.24);
filter: saturate(1.05);
}
.cta:focus-visible {
outline: 2px solid rgba(114, 231, 255, 0.9);
outline-offset: 4px;
}
.note {
margin-top: 1rem;
font-size: 0.92rem;
color: rgba(230, 237, 247, 0.72);
}
.brand-mark {
display: block;
margin: 0 auto 1.4rem;
width: 52px;
height: 52px;
filter: drop-shadow(0 0 12px rgba(114, 231, 255, 0.28));
animation: pulse 4s ease-in-out infinite;
}
.typing-line {
min-height: 1.5rem;
color: var(--cyan);
font-size: 0.95rem;
font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
letter-spacing: 0.04em;
margin: 0 auto 0.6rem;
}
.cursor {
display: inline-block;
width: 2px;
height: 1em;
background: var(--cyan);
margin-left: 2px;
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
}
/* Center the container */
section {
text-align: center;
}
large {
display: inline-block;
font-size: 4rem; /* Makes it nice and big */
transition: transform 0.3s ease; /* Smooth transition for the hover */
cursor: default;
}
/* The Hover Animation */
large:hover {
transform: scale(1.2) rotate(5deg); /* Grows and tilts slightly */
}
/* Optional: Gentle floating animation (always active) */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-4px); }
100% { transform: translateY(0px); }
}
large {
animation: float 3s ease-in-out infinite;
}
.cta {
display: inline-block;
margin-top: 1.5rem;
padding: 0.95rem 1.4rem;
border-radius: 999px;
background: linear-gradient(135deg, rgba(255, 91, 189, 0.95), rgba(114, 231, 255, 0.92));
color: #071423; /* Original dark text */
text-decoration: none;
font-weight: 800;
letter-spacing: 0.01em;
position: relative;
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
/* The "Idle" breath */
animation: breathe 4s infinite ease-in-out;
}
.cta:hover {
/* Fix readability: White text with a slight dark glow for contrast */
color: #ffffff;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
/* The "Active" state: Scale up and shift gears */
transform: translateY(-5px) scale(1.08);
filter: saturate(1.4) brightness(1.1);
/* Faster, more intense pulse when hovered */
animation: hover-pulse 1.5s infinite ease-in-out;
box-shadow:
0 20px 40px rgba(114, 231, 255, 0.4),
0 0 20px rgba(255, 91, 189, 0.4);
}
/* 1. Slow Idle Breath */
@keyframes breathe {
0%, 100% { transform: scale(1); opacity: 0.9; }
50% { transform: scale(1.03); opacity: 1; }
}
/* 2. Fast Hover Pulse (The "Better" Animation) */
@keyframes hover-pulse {
0%, 100% { transform: translateY(-5px) scale(1.08); }
50% { transform: translateY(-8px) scale(1.12); }
}
/* A pulse that breathes with your background colors */
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 10px rgba(114, 231, 255, 0.2); }
50% { box-shadow: 0 0 25px rgba(255, 91, 189, 0.4); }
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse {
0%, 100% { filter: drop-shadow(0 0 10px rgba(114, 231, 255, 0.25)); }
50% { filter: drop-shadow(0 0 20px rgba(255, 91, 189, 0.35)); }
}
@keyframes drift {
0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
50% { transform: translate3d(1.25rem, 1rem, 0) scale(1.08); }
}
@media (max-width: 600px) {
section { padding: 2.25rem 1.35rem; }
p { font-size: 1rem; }
.cta { width: 100%; }
}
</style>
</head>
<body>
<main>
<section>
<img class="brand-mark" src="/favicon.svg" alt="drasticstatic" width="52" height="52"/>
<div class="eyebrow">drasticstatic's root landing page</div>
<p><small>a simple entry point with a clearer atmosphere</small></p><br/>
<h1><span class="accent">Christopher<br />Stephen Wilson</span></h1>
<div class="typing-line" id="typer"> <span class="cursor"></span></div>
<p>precision engineering · sacred systems · code that matters</p><br/><br/>
<div class="note"><br/><em>root site is intentionally minimal by design — the full experience is live at <strong>~/resume/</strong></em></div>
<a class="cta" href="https://drasticstatic.github.io/resume/">✨ Enter HERE to Discover More ↗</a>
<br/><br/><br/><br/><br/><br/><large style="font-size: 30px;">🧑🏽💻</large>
<br/><a href="https://github.com/drasticstatic"><small>return to GitHub profile ↗</small></a>
</section>
<a href="/404?teach" style="opacity:0.4;font-size:0.7rem;color:var(--muted);text-decoration:none;transition:opacity 0.3s ease;margin-top:0.5rem;" onmouseover="this.style.opacity='0.8'" onmouseout="this.style.opacity='0.4'">Lost?</a>
<script>
const lines = [
"machinist by trade",
"builder by nature",
"minister by heart",
"trader by discipline",
"systems architect and programmer by calling",
];
let li = 0, ci = 0, deleting = false;
const el = document.getElementById("typer");
function tick() {
const word = lines[li];
if (!deleting) {
ci++;
el.innerHTML = word.slice(0, ci) + '<span class="cursor"></span>';
if (ci === word.length) { deleting = true; setTimeout(tick, 1800); return; }
} else {
ci--;
el.innerHTML = word.slice(0, ci) + '<span class="cursor"></span>';
if (ci === 0) { deleting = false; li = (li + 1) % lines.length; setTimeout(tick, 400); return; }
}
setTimeout(tick, deleting ? 40 : 70);
}
setTimeout(tick, 800);
</script>
</main>
</body>
</html>