-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.42 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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚀 威飛速達 | Weifly Speed</title>
<style>
:root { --neon: #00ff41; --bg: #0a0a0a; --gold: #d4af37; }
body { background: var(--bg); color: white; font-family: 'JetBrains Mono', monospace; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; overflow: hidden; }
.container { border: 1px solid var(--neon); padding: 40px; border-radius: 10px; background: rgba(0, 255, 65, 0.05); box-shadow: 0 0 20px rgba(0, 255, 65, 0.2); text-align: center; }
h1 { color: var(--gold); font-size: 2.5rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 5px; }
p { color: var(--neon); opacity: 0.8; font-size: 1.1rem; }
.status { margin-top: 20px; font-size: 0.9rem; color: #888; border-top: 1px solid #333; padding-top: 15px; }
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }
</style>
</head>
<body>
<div class="container">
<h1>🚀 威飛速達</h1>
<p>資訊管理實驗室 | WEIFLY SPEED LAB</p>
<div class="status">
SYSTEM STATUS: <span class="blink">ONLINE</span><br>
PRIMARY DOMAIN: weiflycc.info<br>
CONTACT: ice@weiflycc.com
</div>
</div>
</body>
</html>