-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
208 lines (191 loc) · 4.26 KB
/
404.html
File metadata and controls
208 lines (191 loc) · 4.26 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
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
<!-- @format -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>找不到頁面</title>
<style>
@import url('https://font.emtech.cc/css/jfOpenHuninn/400');
@font-face {
font-family: 'NicoMoji';
src: url('/src/Nico-Moji.woff') format('truetype');
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #3a4754;
font-family:
'NicoMoji',
'jfOpenHuninn',
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif;
color: #fff;
padding: 1rem;
overflow: hidden;
}
h1 {
font-size: min(10vw, 8rem);
}
h2 {
font-size: min(5vw, 4rem);
}
h3 {
font-weight: 900;
margin-bottom: 0.5rem;
}
.msg {
padding: 2rem 1rem 1rem 1.5rem;
}
section {
font-size: 1.1rem;
margin-top: 3rem;
background: #dbdcde;
width: 100%;
max-width: 20rem;
color: #111111;
text-align: center;
border-radius: 2rem;
overflow: hidden;
position: relative;
box-shadow:
rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
a {
display: block;
border-top: #cccccc 1px solid;
padding: 1.2rem;
color: #3b86e0;
font-weight: 900;
text-decoration: none;
}
a:hover {
background-color: #d4d4d4;
}
a:active {
background-color: #b8b8b8;
}
.lightning {
position: absolute;
width: 8vmax;
animation: spin 1s infinite ease-in-out;
}
.lightning1 {
top: 0%;
left: 0%;
}
.lightning2 {
top: -8vmax;
left: 30%;
}
.lightning3 {
top: -2vmax;
left: 70%;
}
.lightning4 {
top: -5vmax;
right: -5vmax;
}
.lightning5 {
top: 40%;
right: -5vmax;
}
.lightning6 {
top: 50%;
left: -3vmax;
}
.lightning7 {
bottom: -2vmax;
left: 0;
}
.lightning8 {
bottom: -5vmax;
left: 51%;
}
.lightning9 {
bottom: -8vmax;
right: 0;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
section:has(a:hover) ~ img {
/* pause animation */
animation:
hueRotate 1s infinite ease-in-out,
spin 1s infinite ease-in-out;
}
@keyframes hueRotate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
</style>
</head>
<body>
<h1>404</h1>
<h2>Page Not Found</h2>
<section>
<div class="msg">
<h3>無法找到頁面</h3>
<p>去別的地方找找吧</p>
</div>
<a href="/">回首頁</a>
</section>
<img src="/src/img/lightning.svg" alt="" class="lightning lightning1" /><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning2"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning3"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning4"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning5"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning6"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning7"
/><img
src="/src/img/lightning.svg"
alt=""
class="lightning lightning8"
/><img src="/src/img/lightning.svg" alt="" class="lightning lightning9" />
</body>
</html>