-
Notifications
You must be signed in to change notification settings - Fork 19
/
404.html
60 lines (58 loc) · 1.48 KB
/
404.html
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
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8">
<title>404 - 找不到页面</title>
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1"/>
<style>
html, body{
height: 100%;
}
body{
color: #333;
margin: auto;
padding: 1em;
display: table;
user-select: none;
box-sizing: border-box;
font: lighter 20px "微软雅黑";
}
a{
color: #3498db;
text-decoration: none;
}
h1{
margin-top: 0;
font-size: 3.5em;
}
main{
margin: 0 auto;
text-align: center;
display: table-cell;
vertical-align: middle;
}
.btn{
color: #fff;
padding: .75em 1em;
background: #3498db;
border-radius: 1.5em;
display: inline-block;
transition: opacity .3s, transform .3s;
}
.btn:hover{
transform: scale(1.1);
}
.btn:active{
opacity: .7;
}
</style>
</head>
<body>
<main>
<h1>:(</h1>
<p>嗨,朋友!看上去你输入的地址不存在哦~</p>
<p>你可以去浏览我的 <a href="https://paul.ren">首页</a> 或 <a href="https://paugram.com">博客</a> ~</p>
<a class="btn" href="https://paul.ren">返回首页</a>
</main>
</body>
</html>