-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
146 lines (130 loc) · 3.35 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="zh-CN,en,default" class="loading">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>404 Not Found</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="google" content="notranslate" />
<meta name="keywords" content="棕果核,个人博客,Blog,">
<meta name="author" content="棕果核">
<link rel="icon" href="/img/favicon.png">
<style type="text/css">
* {
margin: 0;
padding: 0;
}
.bimg {
width: 100%;
height: 100%;
background-image: url('/img/cover.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
-webkit-background-size: cover;
-o-background-size: cover;
position: fixed;
top: 0;
left: 0;
z-index: -30;
zoom: 1;
}
.zz {
background-image: none;
background-color: rgba(0, 0, 0, .8);
zoom: 2;
}
.content {
width: 100%;
height: 100%;
position: absolute;
text-align: center;
color: #fff;
}
.content h1 {
margin-top: 20vh;
font-size: 3rem;
font-weight: 700;
}
.content p {
margin-top: 20px;
font-size: 1rem;
margin-bottom: 50px;
}
.content a {
text-decoration: none;
background-color: #5A83DE;
color: #fff;
padding: 10px 20px;
border-style: solid;
border-width: 2px;
border-color: #fff;
border-radius: 10px;
}
.content a:hover {
background-color: #fff;
color: #5A83DE;
border-color: #5A83DE;
}
.site {
width: 100%;
height: 50px;
position: absolute;
bottom: 30vh;
color: #fff;
}
.site div {
width: 80%;
margin: 0 auto;
}
.site div h4 {
margin-bottom: 20px;
}
.site div a {
text-decoration: none;
}
.site div div {
width: 95%;
margin: 15px 0;
background-color: #000;
color: #aaa;
padding: 10px 0 10px 25px;
}
.site div div:hover {
background-color: #5A83DE;
color: #fff;
}
</style>
</head>
<body>
<div class="bimg"></div>
<div class="bimg zz"></div>
<div class="content">
<h1>404 Not Found</h1>
<p>
很抱歉,网站出错,请选择其它站点
</p>
<a href="https://blog.mrzgh.top">返回主页</a>
</div>
<div class="site">
<div>
<h4>> 镜像站点</h4>
<a href="https://mrzgh.top">
<div>https://mrzgh.top</div>
</a>
<a href="https://www.mrzgh.top">
<div>https://www.mrzgh.top</div>
</a>
<a href="https://blog.mrzgh.top">
<div>https://blog.mrzgh.top</div>
</a>
<a href="https://weblog.mrzgh.top">
<div>https://weblog.mrzgh.top</div>
</a>
</div>
</div>
</body>
</html>