-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
68 lines (68 loc) · 2.17 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeQuest · C++ 竞赛学习平台</title>
<meta http-equiv="refresh" content="0; url=cpp-olympiad-site/index.html" />
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0a0a0f;
color: #e2e8f0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container { text-align: center; padding: 2rem; }
h1 {
font-size: 2rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, #38bdf8, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p { color: #94a3b8; margin-bottom: 2rem; }
.links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.link-card {
display: block;
padding: 1rem 1.5rem;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
text-decoration: none;
color: #e2e8f0;
transition: all 0.2s ease;
}
.link-card:hover {
background: rgba(56,189,248,0.1);
border-color: rgba(56,189,248,0.3);
transform: translateY(-2px);
}
.link-card .label { font-size: 0.85rem; color: #94a3b8; }
</style>
</head>
<body>
<div class="container">
<h1>CodeQuest · C++ 竞赛学习平台</h1>
<p>正在跳转到新版网站...</p>
<div class="links">
<a class="link-card" href="cpp-olympiad-site/index.html">
<strong>新版网站</strong><br>
<span class="label">完整课程平台</span>
</a>
<a class="link-card" href="cpp-olympiad-site/old/index.html">
<strong>旧版网站</strong><br>
<span class="label">原始版本</span>
</a>
<a class="link-card" href="cpp-olympiad-roadmap/cpp-olympiad-roadmap.html">
<strong>竞赛路线图</strong><br>
<span class="label">可视化路线</span>
</a>
</div>
</div>
</body>
</html>