-
Notifications
You must be signed in to change notification settings - Fork 19
/
z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f
54 lines (51 loc) · 1.21 KB
/
z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f
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
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style type="text/css">
html, body {
height: 100%;
margin: 0;
}
body {
color: yellow;
background: black url(img/soviet-logo.png) no-repeat center center;
}
.overlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .75);
}
.error {
position: fixed;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.error h1 {
margin: 0;
font-size: 2rem;
}
.error p {
margin: 0;
margin-top: 1rem;
}
</style>
</head>
<body>
<div class="overlay">
<div class="error">
<h1>404 Not Found</h1>
<p>The server can not find the requested page</p>
</div>
</div>
<body>
</html>