Skip to content

Commit 923847d

Browse files
authored
Tial
Trial
2 parents c9f4b62 + b0824af commit 923847d

26 files changed

Lines changed: 2431 additions & 355 deletions

File tree

index.html

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!doctype html>
2+
<html lang="zh-CN">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>THUAI9 WebGL 入口</title>
7+
<style>
8+
:root {
9+
color-scheme: dark;
10+
font-family: "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
11+
background: #05080d;
12+
color: #e9f3ff;
13+
}
14+
15+
body {
16+
min-height: 100vh;
17+
margin: 0;
18+
display: grid;
19+
place-items: center;
20+
background:
21+
radial-gradient(circle at 20% 15%, rgba(45, 156, 219, 0.18), transparent 32rem),
22+
radial-gradient(circle at 80% 85%, rgba(18, 194, 233, 0.12), transparent 28rem),
23+
#05080d;
24+
}
25+
26+
main {
27+
width: min(720px, calc(100vw - 48px));
28+
padding: 40px;
29+
border: 1px solid rgba(130, 190, 255, 0.18);
30+
border-radius: 20px;
31+
background: rgba(8, 15, 24, 0.82);
32+
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
33+
text-align: center;
34+
}
35+
36+
h1 {
37+
margin: 0 0 28px;
38+
font-size: 32px;
39+
letter-spacing: 0.04em;
40+
}
41+
42+
nav {
43+
display: grid;
44+
grid-template-columns: repeat(3, minmax(0, 1fr));
45+
gap: 18px;
46+
}
47+
48+
a {
49+
display: block;
50+
padding: 22px 12px;
51+
border-radius: 14px;
52+
color: #eaf6ff;
53+
background: linear-gradient(180deg, #123154, #0c2037);
54+
border: 1px solid rgba(124, 201, 255, 0.26);
55+
text-decoration: none;
56+
font-size: 22px;
57+
font-weight: 700;
58+
}
59+
60+
a:hover,
61+
a:focus-visible {
62+
outline: none;
63+
background: linear-gradient(180deg, #1d5084, #123154);
64+
border-color: rgba(124, 201, 255, 0.58);
65+
}
66+
67+
@media (max-width: 640px) {
68+
nav {
69+
grid-template-columns: 1fr;
70+
}
71+
}
72+
</style>
73+
</head>
74+
<body>
75+
<main>
76+
<h1>THUAI9 WebGL 入口</h1>
77+
<nav aria-label="THUAI9 WebGL entries">
78+
<a href="./trial/">试玩</a>
79+
<a href="./live/">直播</a>
80+
<a href="./playback/">回放</a>
81+
</nav>
82+
</main>
83+
</body>
84+
</html>

0 commit comments

Comments
 (0)