-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
114 lines (99 loc) · 2.08 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - plos-clan</title>
<style>
body {
position: relative;
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
}
a {
text-decoration: none;
}
#background {
user-select: none;
position: fixed;
rotate: 20deg;
width: 90vmin;
}
#background>p {
font-size: 10vmin;
font-weight: bold;
color: rgba(0, 0, 0, 0.1);
margin: 0;
}
#background>p:first-child {
font-size: 15vmin;
}
#text {
position: fixed;
margin: 1rem;
padding: 1rem;
background-color: #fffa;
border-radius: .5rem;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
max-width: 100%;
max-width: -moz-available;
max-width: -webkit-fill-available;
max-width: fill-available;
}
@media (max-width: 40rem) {
#text {
font-size: .95em;
margin: .5rem;
}
}
@media (max-width: 36rem) {
#text {
font-size: .9em;
}
}
@media (max-width: 34rem) {
#text {
padding: .5rem;
}
}
@media (max-width: 33rem) {
#text {
margin: 0;
}
}
@media (max-width: 32rem) {
#text {
font-size: .85em;
}
}
@media (max-width: 30rem) {
#text {
font-size: .8em;
}
}
#text h1 {
text-align: center;
font-size: 2em;
color: #333;
}
</style>
</head>
<body>
<div id="background">
<p style="text-align: left;">404</p>
<p style="text-align: right;">Not Found</p>
</div>
<main id="text">
<a href="/">
<h1><ruby>啊~主人您又跑哪去了,赶紧回来吧!<rt>あ~ご主人様、どこに行ったの?早く戻ってきてください!</rt></ruby></h1>
</a>
</main>
</body>
</html>