-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
71 lines (71 loc) · 1.8 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>Job Guide: 404 | FFXIV RU</title>
<link rel="shortcut icon" type="image/x-icon" href="https://raw.githubusercontent.com/Murakumo-JP/FFXIVJobRUS/main/Assets/img/favicon.ico" />
<style>
body {
background-color: #ecede7;
font-weight: bold;
}
.ErrorMog {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: auto;
}
.ErrorInfo {
display: flex;
width: 100%;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
}
.ErrorInfo span {
font-size: 150px;
color: #333333;
}
.ErrorInfo p {
text-align: center;
margin-top: 15px;
color: #333333;
font-size: 31px;
}
.ErrorInfo a {
background: #333333;
-moz-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
border-radius: 12px;
display: block;
position: relative;
padding: 1px 16px 0 36px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 14px;
color: #ffffff;
font-weight: bold;
padding: 10px;
text-decoration: none;
transition: all 0.4s;
}
.ErrorInfo a:hover {
background: #525252;
}
</style>
</head>
<body>
<div class="ErrorMog">
<div class="ErrorInfo">
<span>404</span>
<p>Похоже страница не найдена.</p>
<a href="/">Вернуться на главную страницу</a>
</div>
</div>
</body>
</html>