~cytrogen/realm

realm/death.html -rw-r--r-- 1.7 KiB
f6d51824 — Cytrogen 更新联系方式 5 days ago
                                                                                
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
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>遗言 — Realm</title>
	<meta name="description" content="遗言 — Death page of the Realm">
	<meta name="theme-color" content="#1a1a2e">
	<link rel="stylesheet" href="realm.css">
</head>
<body>

	<a class="skip-link" href="#content">跳过场景</a>

	<main class="realm-scene" style="--scene-bg: oklch(0.12 0.03 290)">
		<h1 class="visually-hidden">遗言</h1>
		<div class="realm-scene__content">
		<div class="realm-scene__backdrop">
		<svg role="img" aria-labelledby="death-title" viewBox="0 0 400 500">
			<title id="death-title">遗言 — 墓碑</title>

			<!-- Sky background -->
			<rect class="fill-sky" x="0" y="0" width="400" height="500"/>

			<!-- Ground -->
			<rect class="fill-ground" x="0" y="380" width="400" height="120"/>

			<!-- Tombstone -->
			<path fill="oklch(0.28 0.04 278)" d="
				M80 380 L80 140
				Q80 60 200 50
				Q320 60 320 140
				L320 380 Z
			"/>

			<!-- Engraved epitaph text -->
			<text fill="oklch(0.42 0.03 285)" text-anchor="middle" font-family="system-ui, sans-serif">
				<tspan x="200" y="180" font-size="18">冒险模式 LEVEL 1-1</tspan>
				<tspan x="200" y="220" font-size="18">玩玩小游戏</tspan>
				<tspan x="200" y="260" font-size="18">解密模式</tspan>
				<tspan x="200" y="300" font-size="18">生存模式</tspan>
			</text>

			<!-- Ground mound at base -->
			<path class="fill-ground" d="M40 380 Q200 360 360 380 Z"/>
		</svg>
		</div>
		</div>

		<nav id="content" class="realm-scene__nav realm-nav">
			<a href="castle.html">← 返回领地</a>
		</nav>
	</main>

</body>
</html>