-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
337 lines (319 loc) · 9.86 KB
/
Copy pathindex.html
File metadata and controls
337 lines (319 loc) · 9.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pohan Lee</title>
<style>
*{margin:0;padding:0;box-sizing:border-box}
:root{
--bone:#f5f0e8;
--charcoal:#1a1a1a;
--green:#2d5a27;
--orange:#c4500a;
--gray:#6b6b6b;
--rule:rgba(26,26,26,.15);
--hover-green:#1e3d1a;
}
body{
background:var(--bone);
color:var(--charcoal);
font-family:Georgia,'Noto Serif SC','Songti SC',serif;
min-height:100vh;
padding:0;
position:relative;
}
/* --- Parchment texture overlay --- */
body::before{
content:'';
position:fixed;
inset:0;
background:url('parchment.jpg') center/cover no-repeat;
opacity:.35;
z-index:0;
pointer-events:none;
}
body::after{
content:'';
position:fixed;
inset:0;
background:rgba(245,240,232,.6);
z-index:0;
pointer-events:none;
}
/* --- Layout --- */
.page{
position:relative;
z-index:1;
max-width:680px;
margin:0 auto;
padding:clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,2.5rem);
}
/* --- Header with avatar --- */
.header{
display:flex;
align-items:center;
gap:1.5rem;
padding-bottom:1.5rem;
border-bottom:2px solid var(--charcoal);
margin-bottom:2.5rem;
}
.avatar{
width:72px;height:72px;
flex-shrink:0;
border-radius:50%;
overflow:hidden;
border:2px solid var(--charcoal);
background:var(--bone);
}
.avatar svg{display:block}
.header-text{flex:1;min-width:0}
.header-name{
font-size:clamp(1.6rem,4vw,2.4rem);
font-weight:700;
letter-spacing:-.03em;
line-height:1.1;
margin-bottom:.25rem;
}
.header-tag{
font-size:.75rem;
font-family:Menlo,Consolas,monospace;
color:var(--gray);
letter-spacing:.05em;
text-transform:uppercase;
}
/* --- Bio --- */
.bio{
font-size:clamp(1rem,2.5vw,1.15rem);
line-height:1.75;
color:var(--charcoal);
max-width:540px;
margin-bottom:3rem;
font-style:italic;
}
.bio em{
font-style:normal;
color:var(--green);
font-weight:600;
}
/* --- Section label --- */
.section-label{
font-family:Menlo,Consolas,monospace;
font-size:.7rem;
letter-spacing:.12em;
text-transform:uppercase;
color:var(--gray);
margin-bottom:1rem;
}
/* --- Links --- */
.links{
display:flex;
flex-direction:column;
gap:0;
margin-bottom:3rem;
}
.link{
display:flex;
justify-content:space-between;
align-items:baseline;
padding:1rem 0;
border-bottom:1px solid var(--rule);
text-decoration:none;
color:var(--charcoal);
transition:color .2s,padding-left .2s;
}
.link:first-child{border-top:1px solid var(--rule)}
.link:hover{
color:var(--green);
padding-left:.5rem;
}
.link-left{display:flex;flex-direction:column;gap:.15rem}
.link-name{
font-size:1.1rem;
font-weight:700;
letter-spacing:-.01em;
}
.link-desc{
font-size:.8rem;
color:var(--gray);
font-family:Menlo,Consolas,monospace;
}
.link-arrow{
font-size:1.3rem;
color:var(--rule);
transition:color .2s;
flex-shrink:0;
}
.link:hover .link-arrow{color:var(--green)}
/* --- Event block --- */
.event{
background:var(--charcoal);
color:var(--bone);
padding:clamp(1.5rem,4vw,2.5rem);
margin-bottom:3rem;
position:relative;
}
.event::before{
content:'UPCOMING';
position:absolute;
top:-.6rem;
left:1.5rem;
background:var(--orange);
color:var(--bone);
font-family:Menlo,Consolas,monospace;
font-size:.6rem;
letter-spacing:.15em;
padding:.2rem .6rem;
}
.event-name{
font-size:clamp(1.3rem,3.5vw,1.8rem);
font-weight:700;
letter-spacing:-.02em;
margin-bottom:.3rem;
}
.event-sub{
font-size:.85rem;
color:#a0a0a0;
margin-bottom:1rem;
font-style:italic;
}
.event-meta{
display:flex;
flex-wrap:wrap;
gap:.6rem 1.5rem;
font-family:Menlo,Consolas,monospace;
font-size:.72rem;
color:#888;
margin-bottom:1.2rem;
}
.event-meta span::before{
content:'//';
color:var(--orange);
margin-right:.3rem;
}
.event-link{
display:inline-block;
color:var(--bone);
text-decoration:none;
font-family:Menlo,Consolas,monospace;
font-size:.8rem;
border:1px solid #555;
padding:.5rem 1.2rem;
transition:all .2s;
}
.event-link:hover{
background:var(--bone);
color:var(--charcoal);
border-color:var(--bone);
}
/* --- Footer --- */
.footer{
display:flex;
justify-content:space-between;
align-items:center;
padding-top:1rem;
border-top:1px solid var(--rule);
font-size:.7rem;
font-family:Menlo,Consolas,monospace;
color:var(--gray);
}
.footer a{
color:var(--gray);
text-decoration:none;
}
.footer a:hover{color:var(--green)}
/* --- Responsive --- */
@media(max-width:480px){
.header{flex-direction:column;text-align:center}
.header-text{text-align:center}
.event-meta{flex-direction:column;gap:.4rem}
.footer{flex-direction:column;gap:.3rem;text-align:center}
}
/* --- Print --- */
@media print{
body::before,body::after{display:none}
.event{background:#1a1a1a;-webkit-print-color-adjust:exact;print-color-adjust:exact}
}
</style>
</head>
<body>
<div class="page">
<header class="header">
<div class="avatar">
<svg viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<circle cx="36" cy="36" r="36" fill="#f5f0e8"/>
<!-- Face -->
<circle cx="36" cy="34" r="18" fill="#e8ddd0"/>
<!-- Hair / beanie -->
<path d="M18 30c0-10 8-18 18-18s18 8 18 18c0 2-1 3-3 3H21c-2 0-3-1-3-3z" fill="#2d5a27"/>
<rect x="18" y="29" width="36" height="4" rx="2" fill="#2d5a27"/>
<line x1="18" y1="31" x2="54" y2="31" stroke="#1e3d1a" stroke-width="1.5"/>
<!-- Beanie fold line -->
<path d="M20 26c4-2 10-3 16-3s12 1 16 3" fill="none" stroke="#1e3d1a" stroke-width="1" opacity=".4"/>
<!-- Eyes -->
<circle cx="29" cy="37" r="2.5" fill="#1a1a1a"/>
<circle cx="43" cy="37" r="2.5" fill="#1a1a1a"/>
<!-- Eye shine -->
<circle cx="30" cy="36" r=".8" fill="#f5f0e8"/>
<circle cx="44" cy="36" r=".8" fill="#f5f0e8"/>
<!-- Glasses -->
<rect x="24" y="33" width="10" height="8" rx="2" fill="none" stroke="#1a1a1a" stroke-width="1.2"/>
<rect x="38" y="33" width="10" height="8" rx="2" fill="none" stroke="#1a1a1a" stroke-width="1.2"/>
<line x1="34" y1="37" x2="38" y2="37" stroke="#1a1a1a" stroke-width="1.2"/>
<line x1="24" y1="37" x2="21" y2="35" stroke="#1a1a1a" stroke-width="1"/>
<line x1="48" y1="37" x2="51" y2="35" stroke="#1a1a1a" stroke-width="1"/>
<!-- Nose -->
<path d="M35 41c0 1.5 1 2.5 2 2.5s2-1 2-2.5" fill="none" stroke="#c4a882" stroke-width="1" stroke-linecap="round"/>
<!-- Smile -->
<path d="M30 46c2 3 10 3 12 0" fill="none" stroke="#1a1a1a" stroke-width="1.2" stroke-linecap="round"/>
<!-- Shoulders / shirt collar -->
<path d="M16 62c0-8 9-14 20-14s20 6 20 14" fill="#c4500a"/>
<path d="M32 50l4 4 4-4" fill="none" stroke="#f5f0e8" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<!-- Code bracket on shirt -->
<text x="36" y="60" text-anchor="middle" font-family="Menlo,monospace" font-size="6" fill="#f5f0e8" opacity=".6"></></text>
</svg>
</div>
<div class="header-text">
<div class="header-name">Pohan Lee</div>
<div class="header-tag">builder & operator</div>
</div>
</header>
<p class="bio">
Solo ecommerce operator who codes (with AI). Building tools I actually use — <em>automation</em>, <em>AI reply assistants</em>, <em>thermal printer hacks</em>. Organizing hackathons under <em>"This Should Work / 野生产品部"</em>. Everything ships. Nothing is theoretical.
</p>
<div class="section-label">Where to find me</div>
<nav class="links">
<a class="link" href="https://github.com/Phat-Po" target="_blank" rel="noopener">
<div class="link-left">
<div class="link-name">GitHub</div>
<div class="link-desc">open source & experiments</div>
</div>
<div class="link-arrow">→</div>
</a>
<a class="link" href="https://www.xiaohongshu.com/user/profile/631af8e4000000002303fa6d" target="_blank" rel="noopener">
<div class="link-left">
<div class="link-name">小红书</div>
<div class="link-desc">daily builds & vibe coding life</div>
</div>
<div class="link-arrow">→</div>
</a>
</nav>
<div class="section-label">Event</div>
<div class="event">
<div class="event-name">This Should Work</div>
<div class="event-sub">Ridiculous, But Functional.</div>
<div class="event-meta">
<span>2026.05.16–17</span>
<span>Shanghai</span>
<span>2-day offline build weekend</span>
</div>
<a class="event-link" href="https://eyhshen.github.io/this-should-work/" target="_blank" rel="noopener">View event page →</a>
</div>
<footer class="footer">
<span>Built with AI</span>
<a href="https://github.com/Phat-Po" target="_blank">© 2026 Pohan Lee</a>
</footer>
</div>
</body>
</html>