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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>welcome — trainytrain.xyz</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Audiowide&family=Caveat:wght@400;500;600;700&family=Michroma&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap" />
<link rel="stylesheet" href="aero.css" />
<style>
body {
background:
url("img/wallpaper.png") center / cover no-repeat,
linear-gradient(180deg, oklch(78% 0.10 215) 0%, oklch(88% 0.14 145) 100%);
background-attachment: fixed;
height: 100vh; overflow: hidden;
}
.stage {
position: fixed; inset: 0;
display: flex; flex-direction: column; align-items: center; justify-content: center;
text-align: center; padding: 20px;
}
/* main glass plate */
.gate {
position: relative;
padding: 56px 72px 48px;
border-radius: 28px;
min-width: 480px;
background:
linear-gradient(to bottom, rgba(255,255,255,0.62), rgba(220,240,250,0.42));
backdrop-filter: blur(22px) saturate(170%);
-webkit-backdrop-filter: blur(22px) saturate(170%);
border: 1px solid rgba(255,255,255,0.85);
box-shadow:
inset 0 1px 0 rgba(255,255,255,0.95),
inset 0 -1px 0 rgba(120,160,200,0.25),
0 20px 60px rgba(40,90,140,0.28);
animation: float 6s ease-in-out infinite;
}
.gate::before {
content: ""; position: absolute; left: 1px; right: 1px; top: 1px; height: 45%;
border-radius: 28px;
background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
pointer-events: none;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.mark {
width: 64px; height: 64px; margin: 0 auto 18px;
border-radius: 50%;
background:
radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95) 0%, rgba(180,240,200,0.4) 30%, rgba(140,210,180,0.2) 60%),
linear-gradient(135deg, oklch(88% 0.14 145), oklch(60% 0.16 150));
border: 1.5px solid rgba(255,255,255,0.85);
box-shadow:
inset -6px -8px 18px rgba(40,110,80,0.35),
inset 4px 6px 12px rgba(255,255,255,0.65),
0 6px 20px rgba(60,140,100,0.35);
display: flex; align-items: center; justify-content: center;
color: white; font-size: 30px; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
position: relative;
}
.title {
margin: 0; font-size: 64px; font-weight: 200; letter-spacing: -2px;
line-height: 1; color: oklch(28% 0.08 230);
text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 2px 14px rgba(255,255,255,0.5);
}
.title em {
font-style: italic; font-weight: 300;
color: oklch(45% 0.15 150);
}
.sub {
margin: 14px 0 32px; font-size: 14px; color: oklch(35% 0.06 230);
opacity: 0.85; line-height: 1.55; max-width: 380px; margin-left: auto; margin-right: auto;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.sub strong { font-weight: 600; color: oklch(28% 0.10 230); }
/* ENTER button — chunky bubble */
.enter {
display: inline-flex; align-items: center; gap: 12px;
padding: 18px 40px 18px 34px;
font-family: "Segoe UI", Tahoma, sans-serif;
font-size: 22px; font-weight: 700; letter-spacing: 1px;
text-transform: lowercase;
color: white; text-shadow: 0 1px 2px rgba(30,80,40,0.5);
text-decoration: none;
border: 1.5px solid oklch(40% 0.14 150);
border-radius: 999px;
background:
linear-gradient(to bottom,
oklch(95% 0.10 145) 0%,
oklch(78% 0.18 145) 48%,
oklch(52% 0.16 150) 52%,
oklch(70% 0.18 145) 100%);
box-shadow:
inset 0 2px 0 rgba(255,255,255,0.85),
inset 0 -3px 6px oklch(35% 0.13 150),
0 6px 22px rgba(60,140,100,0.4);
cursor: pointer; position: relative;
transition: transform 200ms;
}
.enter::before {
content: ""; position: absolute; left: 6px; right: 6px; top: 3px; height: 44%;
border-radius: 999px;
background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.05));
pointer-events: none;
}
.enter:hover { transform: translateY(-2px) scale(1.03); }
.enter:active { transform: translateY(0) scale(0.99); }
.enter > span { position: relative; }
.enter .arrow {
position: relative; display: inline-block;
transition: transform 200ms;
}
.enter:hover .arrow { transform: translateX(3px); }
/* meta strip */
.meta {
margin-top: 22px; display: flex; gap: 18px; justify-content: center;
font-size: 11px; color: oklch(35% 0.06 230);
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
opacity: 0.75; letter-spacing: 1.5px; text-transform: uppercase;
}
.meta span::before { content: "♦ "; opacity: 0.5; }
.meta span:first-child::before { content: ""; }
/* tagline at bottom */
.footer-note {
position: fixed; left: 50%; transform: translateX(-50%); bottom: 28px;
font-size: 11px; color: oklch(30% 0.05 230); opacity: 0.7;
text-shadow: 0 1px 0 rgba(255,255,255,0.55);
font-family: "Courier New", monospace; letter-spacing: 1px;
}
.footer-note a { color: inherit; }
/* tiny corner badges, like classic webrings */
.badges {
position: fixed; right: 24px; bottom: 24px;
display: flex; gap: 8px;
}
.badge {
height: 24px; padding: 0 10px;
display: inline-flex; align-items: center;
font: 700 9px "Courier New", monospace; letter-spacing: 1.5px; text-transform: uppercase;
color: white; text-shadow: 0 1px 1px rgba(0,0,0,0.4);
border-radius: 4px;
background: linear-gradient(to bottom, oklch(70% 0.13 220), oklch(45% 0.13 230));
border: 1px solid oklch(35% 0.12 235);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 6px rgba(40,80,140,0.3);
cursor: pointer;
}
.badge.green { background: linear-gradient(to bottom, oklch(75% 0.16 145), oklch(48% 0.14 150)); border-color: oklch(38% 0.13 150); }
.badge.silver { background: linear-gradient(to bottom, oklch(88% 0.02 230), oklch(60% 0.04 235)); border-color: oklch(45% 0.05 240); color: oklch(20% 0.04 240); text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
</style>
</head>
<body class="welcome-body">
<script>(function(){var t=localStorage.getItem('tyler.theme')||'aero';document.body.setAttribute('data-theme',t);})();</script>
<div id="bub-stage" style="position:fixed;inset:0;pointer-events:none;z-index:0"></div>
<!-- Floating water droplets in the corners (aero polish) -->
<div class="welcome-drops" aria-hidden="true">
<div class="drop" style="left: 6%; top: 10%; width: 84px; height: 76px;"></div>
<div class="drop" style="left: 14%; bottom: 18%; width: 42px; height: 38px;"></div>
<div class="drop" style="right: 8%; top: 22%; width: 56px; height: 50px;"></div>
<div class="drop" style="right: 18%; top: 8%; width: 28px; height: 26px;"></div>
<div class="drop" style="right: 12%; bottom: 28%; width: 96px; height: 86px;"></div>
<div class="drop" style="left: 28%; bottom: 8%; width: 36px; height: 32px;"></div>
</div>
<!-- Indie-web pledge strip (top-left) -->
<div class="indie-strip">
<div class="is-line"><span class="is-dot"></span>no ads · no trackers</div>
<div class="is-line" style="opacity: 0.85;">hand-coded · hosted at home · since 2019</div>
</div>
<div class="stage">
<div class="gate">
<div class="mark">❀</div>
<h1 class="title"><em>trainytrain</em><em>.xyz</em></h1>
<p class="sub">a quiet little corner of the web — <strong>banker</strong> by day, <strong>jazz pianist</strong> by night, <strong>linux sysadmin</strong> in the in-between. come on in.</p>
<a class="enter" href="index.html"><span>enter</span><span class="arrow">→</span></a>
<div class="meta">
<span>est. 2019</span>
<span>made with ♥ & vim</span>
<span>no cookies</span>
</div>
</div>
</div>
<div class="footer-note">tyler hoang © 2026 · hosted on vultr · <a class="aero-link" style="color:inherit;" href="mailto:tyler@tylerhoang.xyz">tyler@tylerhoang.xyz</a></div>
<!-- Webring footer (very 2003) -->
<div class="welcome-webring">
<span class="wr-label"><span style="font-size:12px;">❀</span> quiet web ring</span>
<a href="#" title="previous site">« prev</a>
<span class="wr-sep"></span>
<a href="#" title="random site">random</a>
<span class="wr-sep"></span>
<a href="#" title="next site">next »</a>
</div>
<div class="badges">
<div class="badge">best viewed on a real computer</div>
<div class="badge green">javascript on</div>
<div class="badge silver">vim ❤</div>
</div>
<script src="aero.js"></script>
<script>
Aero.initTheme();
Aero.spawnBubbles(document.getElementById('bub-stage'), 26);
Aero.spawnShards(document.getElementById('bub-stage'), 30, 'shard', 1.5);
Aero.sparkleCursor();
Aero.mountThemeSwitcher();
</script>
</body>
</html>
|