-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
67 lines (65 loc) · 1.71 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
61
62
63
64
65
66
67
<!--
* @Author: 喵二
* @Date: 2023-08-12 19:19:03
* @LastEditors: 喵二
* @LastEditTime: 2024-04-06 21:12:18
* @FilePath: \undefinedn:\Git\static\404.html
-->
<!DOCTYPE html>
<html lang="zh-cn-Hans">
<head>
<meta charset="UTF-8">
<title>404 - 喵二の小博客</title>
<link rel="icon" href="https://cdn.jsdelivr.net/gh/miaoermua/miaoermua.github.io@latest/logo/weblogo.ico" type="image/x-icon">
<link rel="shortcut icon" href="https://cdn.jsdelivr.net/gh/miaoermua/miaoermua.github.io@latest/logo/weblogo.ico" type="image/x-icon">
<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>嗨,朋友!为什么就 404 呢?</p>
<p>你可以去访问我的 <a href="https://www.miaoer.xyz">个人主页</a>
</main>
</body>
</html>