This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherror.html
106 lines (91 loc) · 2.34 KB
/
error.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
::-webkit-scrollbar {
display: none;
}
body {
padding: 0;
margin: 0;
background-color: black;
font-family: Verdana, sans-serif;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.5;
color: white;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-touch-callout: none;
}
a {
color: #808080;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}
.nav {
height: 56px;
}
div {
text-align: center;
}
img {
max-width: 256px;
}
#title {
font-size: 22px;
margin-bottom: 7px;
margin-top: 14px;
}
#code {
font-size: 22px;
margin-top: 7px;
}
#redirect {
color: white;
font-size: 20px;
padding: 12px;
border: 2px solid #27272A;
background-color: transparent;
text-decoration: none;
border-radius: 0.5rem;
}
#redirect:hover {
background-color: #27272A;
color: white;
}
#footer {
align-items: center;
font-size: 20px;
margin-top: 28px;
}
#footer a {
text-decoration: none;
}
#footer a:hover {
color: #0EA5E9;
}
</style>
</head>
<body>
<img src="./icon.png" draggable="false">
<div>
<h3 id="title">ERROR.LABEL</h3>
<p id="code">ERROR.STATUS</p>
<a id="redirect" draggable="false">ERROR.REDIRECT</a>
<p id="footer">FOOTER</p>
</div>
</body>
</html>