-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
427 lines (380 loc) · 13.3 KB
/
Copy pathindex.html
File metadata and controls
427 lines (380 loc) · 13.3 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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>zergling73</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0f0f11; /* 深色背景:墨色 */
--text-primary: #e0e0e0; /* 淺灰文字:宣紙感 */
--text-dim: #888; /* 次要文字 */
--accent-color: #cf2e2e; /* 點綴色:印泥紅 */
--tech-dim: #333; /* 科技灰 */
}
body {
background-color: var(--bg-color);
color: var(--text-primary);
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow-x: hidden;
font-family: 'Noto Serif TC', serif;
}
/* === 背景裝飾:呼吸圓環 === */
.bg-circle {
position: absolute;
width: 65vh;
height: 65vh;
border: 1px solid var(--tech-dim);
border-radius: 50%;
opacity: 0.3;
z-index: -1;
animation: breathe 8s infinite ease-in-out;
pointer-events: none;
}
@keyframes breathe {
0%, 100% { transform: scale(1); opacity: 0.15; border-color: #333; }
50% { transform: scale(1.02); opacity: 0.35; border-color: #555; }
}
.container {
position: relative;
display: flex;
flex-direction: row-reverse;
gap: 5rem;
padding: 2rem;
max-width: 1000px;
min-height: 70vh;
border-right: 1px solid var(--tech-dim);
}
/* === 右側:個人靈魂區 (直排) === */
.profile-section {
writing-mode: vertical-rl; /* 直排模式 */
text-orientation: upright; /* 漢字直立 */
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 1.5rem 0;
color: var(--text-primary);
letter-spacing: 0.2rem;
line-height: 1.2;
}
.bio {
font-size: 1.1rem;
color: var(--text-dim);
line-height: 2;
letter-spacing: 0.2rem;
border-top: 2px solid var(--accent-color); /* 頂部紅線 */
padding-top: 1.5rem;
margin-right: 0.5rem;
}
/* 紅色落款印章 */
.seal {
width: 3rem;
height: 3rem;
border: 2px solid var(--accent-color);
color: var(--accent-color);
writing-mode: horizontal-tb; /* 印章內部橫排 */
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: bold;
margin-top: 2rem;
margin-left: 0;
opacity: 0.9;
user-select: none;
box-shadow: 0 0 10px rgba(207, 46, 46, 0.2); /* 微微發光 */
}
/* === 左側:功能數據區 (橫排) === */
.left-panel {
display: flex;
flex-direction: column;
justify-content: center;
min-width: 300px;
}
/* --- Terminal 風格 ID 展示 --- */
.terminal-id {
font-family: 'Space Mono', monospace;
font-size: 0.9rem;
margin-bottom: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.3rem;
opacity: 0.9;
}
.terminal-line {
display: flex;
align-items: center;
gap: 0.6rem;
}
.prompt {
color: var(--accent-color);
font-weight: bold;
opacity: 0.8;
white-space: nowrap;
}
.cmd {
color: var(--text-dim);
}
.cursor {
color: var(--accent-color);
animation: blink-cursor 1s step-end infinite;
font-weight: bold;
font-size: 0.9rem;
margin-left: 2px;
}
@keyframes blink-cursor {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* --- 連結按鈕組 --- */
.links-group {
display: flex;
flex-direction: column;
gap: 1.2rem;
margin-bottom: 3rem; /* 與下方經歷區拉開距離 */
}
.link-item {
font-family: 'Space Mono', monospace;
text-decoration: none;
color: var(--text-primary);
border: 1px solid var(--tech-dim);
padding: 1rem 1.5rem;
font-size: 0.95rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
display: flex;
justify-content: space-between;
background: rgba(15, 15, 17, 0.8);
}
.link-item:hover {
border-color: var(--text-primary);
background: rgba(255, 255, 255, 0.08);
padding-left: 2rem;
text-shadow: 0 0 5px rgba(255,255,255,0.5);
}
.link-item::before {
content: '';
position: absolute;
left: 0; top: 0; bottom: 0;
width: 3px;
background-color: var(--accent-color);
transform: scaleY(0);
transition: transform 0.3s ease;
}
.link-item:hover::before { transform: scaleY(1); }
.number {
color: var(--tech-dim);
font-size: 0.8rem;
}
/* --- 經歷/成就 (系統日誌風格) --- */
.achievements-box {
border-left: 1px dashed var(--tech-dim);
padding-left: 1.5rem;
position: relative;
}
.achievements-box + .achievements-box {
margin-top: 1.5rem;
}
.log-title {
font-family: 'Space Mono', monospace;
font-size: 0.75rem;
color: var(--accent-color);
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
display: flex;
align-items: center;
gap: 0.5rem;
}
/* 呼吸燈點點 */
.log-title::before {
content: '';
width: 6px; height: 6px;
background-color: var(--accent-color);
border-radius: 50%;
animation: blink 2s infinite;
}
.log-list {
list-style: none;
padding: 0;
margin: 0;
font-family: 'Space Mono', monospace;
font-size: 0.85rem;
color: var(--text-dim);
}
.log-item {
margin-bottom: 0.8rem;
display: flex;
align-items: baseline;
gap: 0.8rem;
transition: color 0.3s;
}
.log-item:hover {
color: var(--text-primary);
}
.log-tag {
font-family: 'Space Mono', monospace;
font-size: 0.7rem;
color: var(--text-dim);
border: 1px solid var(--tech-dim);
padding: 1px 6px;
white-space: nowrap;
flex-shrink: 0;
transition: border-color 0.3s, color 0.3s;
}
.log-item:hover .log-tag {
border-color: var(--accent-color);
color: var(--accent-color);
}
.rank-highlight {
color: var(--text-primary);
border-bottom: 1px solid var(--accent-color);
padding-bottom: 2px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
/* === 手機版適配 === */
@media (max-width: 768px) {
body {
align-items: flex-start;
}
.container {
flex-direction: column;
min-height: unset;
border-right: none;
gap: 3rem;
padding: 4rem 1.5rem;
}
.profile-section {
writing-mode: horizontal-tb;
align-items: center;
text-align: center;
}
h1 {
font-size: 2.5rem;
border-bottom: 1px solid var(--tech-dim);
padding-bottom: 1rem;
margin-bottom: 1rem;
letter-spacing: 0.1rem;
}
.bio {
border-top: none;
padding-top: 0;
margin-right: 0;
}
.seal { display: none; }
.left-panel {
width: 100%;
}
.achievements-box {
border-left: none;
border-top: 1px dashed var(--tech-dim);
padding-left: 0;
padding-top: 1.5rem;
}
.terminal-id {
align-items: center;
}
.prompt {
font-size: 0.75rem;
}
}
</style>
</head>
<body>
<div class="bg-circle"></div>
<div class="container">
<div class="profile-section">
<h1>仍未迷途 仍為迷途</h1>
<div class="bio">
迷途之羊<br>
</div>
<div class="seal">參</div>
</div>
<div class="left-panel">
<div class="terminal-id">
<div class="terminal-line">
<span class="prompt">zerglinux@portal:~$</span>
<span class="cmd">whoami</span><span class="cursor">_</span>
</div>
</div>
<div class="links-group">
<a href="https://zergling73.com/Blog" class="link-item" target="_blank">
<span>>_ BLOG</span>
<span class="number">01</span>
</a>
<a href="https://zergling73.com/PRTS" class="link-item" target="_blank">
<span>>_ LINKTREE</span>
<span class="number">02</span>
</a>
</div>
<div class="achievements-box">
<div class="log-title">SYSTEM_LOGS // AWARDS</div>
<ul class="log-list">
<li class="log-item">
<span class="log-tag">'26</span>
<span>PUPC 2026 <span class="rank-highlight">銅獎</span></span>
</li>
<li class="log-item">
<span class="log-tag">'26</span>
<span>MyFirstCTF <span class="rank-highlight">rk.20</span></span>
</li>
<li class="log-item">
<span class="log-tag">'25</span>
<span>神盾盃資安競賽 決賽 <span class="rank-highlight">rk.7</span></span>
</li>
<li class="log-item">
<span class="log-tag">'25</span>
<span>AIS3 Junior 2025 <span class="rank-highlight">最佳專題獎</span></span>
</li>
<li class="log-item">
<span class="log-tag">'24</span>
<span>仰望盃 決賽 <span class="rank-highlight">優等獎</span></span>
</li>
<li class="log-item">
<span class="log-tag">'22</span>
<span>APCS <span class="rank-highlight">3-3</span></span>
</li>
</ul>
</div>
<div class="achievements-box">
<div class="log-title">SYSTEM_LOGS // EXPERIENCE</div>
<ul class="log-list">
<li class="log-item">
<span class="log-tag">'26</span>
<span>AIS3 2026 <span class="rank-highlight">學員</span></span>
</li>
<li class="log-item">
<span class="log-tag">'26</span>
<span>逢甲大學黑客社 <span class="rank-highlight">13th 網管</span></span>
</li>
<li class="log-item">
<span class="log-tag">'25</span>
<span>AIS3 Junior 2025 <span class="rank-highlight">學員</span></span>
</li>
<li class="log-item">
<span class="log-tag">'24</span>
<span>中電會 <span class="rank-highlight">第三屆-活動組</span></span>
</li>
<li class="log-item">
<span class="log-tag">'24</span>
<span>SITCON <span class="rank-highlight">會眾</span></span>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>