-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
210 lines (187 loc) · 4.38 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Wayne">
<title>404 | WayneのNavigation</title>
<meta name="keywords" content="网址导航,网站导航,Wayne,Navigation"/>
<meta name="description" content="WayneのNavigation - 收集国内外优秀网站、灵感创意网站,定时更新分享优质书签。">
<link rel="shortcut icon" type="image/x-icon" href="images/wayne.png"/>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-77253689-1');
</script>
<style>
html,
body {
width: 99%;
height: 99%
}
a,
a img,
a:before,
a:after {
text-decoration: none;
transition-duration: .25s
}
section {
display: block
}
body {
line-height: 1
}
#about {
width: 40%;
position: absolute;
top: 40%;
left: 10%;
z-index: 20;
transform: translate(0, -50%);
}
#about h1 {
margin: 30px;
}
#about p {
margin: 30px;
}
#about img {
margin-left: 30px;
}
#about .social {
float: left;
margin: 30px;
}
#about .copyright {
width: 100%;
float: left;
margin-bottom: 0px;
}
@media (max-width: 768px) {
#about {
width: 100%;
left: 0px;
height: 100%;
background-color: rgba(255, 255, 255, 0.85);
}
#about h1 {
margin: 30px;
}
#about p {
margin: 30px;
}
#about .social {
margin: 30px;
}
#about .copyright {
width: 100%;
float: left;
margin-bottom: 0px;
}
}
@media (max-width: 580px) {
#about {
width: 100%;
left: 0px;
height: 100%;
background-color: rgba(255, 255, 255, 0.85);
}
#about h1 {
margin: 30px;
}
#about p {
margin: 30px;
margin-bottom: 0px
}
#about .social {
margin: 30px;
margin-bottom: 0px
}
#about .copyright {
width: 100%;
float: left;
margin-bottom: 0px;
}
}
.animated {
animation-duration: 1s;
animation-fill-mode: both
}
.bounce-in {
animation-name: bounce-in
}
@keyframes bounce-in {
from,
60%,
75%,
90%,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
transform: translate3d(-3000px, -50%, 0)
}
60% {
opacity: 1;
transform: translate3d(25px, -50%, 0)
}
75% {
transform: translate3d(-10px, -50%, 0)
}
90% {
transform: translate3d(5px, -50%, 0)
}
to {
transform: translate3d(0, -50%)
}
}
body {
font-family: "Roboto", sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 1.75;
color: rgba(0, 0, 0, 0.65)
}
h1 {
font-family: "Merriweather", sans-serif;
font-size: 50px;
font-weight: 700;
line-height: 1.25;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 25px
}
a {
color: rgba(3, 3, 3, 0.85);
font-weight: 600;
}
@media (max-width: 580px) {
body {
font-size: 14px
}
h1 {
font-size: 42px;
line-height: 1.45
}
}
.bg-align {
margin-top: 50%;
}
</style>
</head>
<body>
<section id="about" class="animated bounce-in">
<div class="bg-align">
<h1>404</h1>
<p>很抱歉,您访问的页面不存在!</p>
<p>请仔细检查您输入的网址是否正确。</p>
<p><a href="https://nav.kong.pub">👉 WayneのNavigation</a></p>
</div>
</section>
</body>
</html>