-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
78 lines (67 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Not found</title>
<style type="text/css">
html {
background: url(img/andreas-selter-unsplash.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
padding: 0;
margin: 0;
font-size: 20px;
font-family: sans-serif;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: rgba(0,0,0,0.3);
}
.content {
padding: 5px 25px;
margin: 0 15px;
border-radius: 5px;
background: rgba(0,0,0,0.7);
max-width: 500px;
text-align: center;
color: #ffffff;
}
.footer {
width: 100%;
margin: 1.5em 0;
padding: 0;
font-size: 0.7em;
color: grey;
}
h1 {
font-size: 1.8em;
font-family: sans-serif;
font-weight: normal;
margin: 30px 0;
}
hr {
margin: 30px 10px;
}
p {
margin: 30px 0;
}
</style>
</head>
<body class="">
<div class="container">
<div class="content">
<h1 class="">Whoops where it is?!</h1>
<hr>
<p class="">404 - This page seems to be gone...</p>
</div>
</div>
</body>
</html>