-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy path404.html
File metadata and controls
50 lines (50 loc) · 1.14 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>404 - 页面未找到</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./global.css">
<style>
.notfound {
text-align: center;
padding: 100px 24px;
}
.notfound .code {
font-size: 120px;
font-weight: 800;
color: var(--accent);
line-height: 1;
margin-bottom: 12px;
}
.notfound h2 {
font-size: 22px;
margin-bottom: 8px;
}
.notfound p {
color: var(--text-secondary);
margin-bottom: 28px;
}
.notfound .btn {
display: inline-block;
padding: 10px 28px;
background: var(--accent);
color: #fff;
border-radius: 8px;
font-size: 15px;
transition: background .2s;
}
.notfound .btn:hover {
background: var(--accent-hover);
}
</style>
</head>
<body>
<div class="notfound">
<div class="code">404</div>
<h2>页面找不到了</h2>
<p>你访问的页面可能已被移除或链接有误</p>
<a class="btn" href="/">← 返回首页</a>
</div>
</body>
</html>