-
Notifications
You must be signed in to change notification settings - Fork 21
/
404.html
79 lines (72 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Papeg.ai - 404 - page not found</title>
<style>
body{
background-color:black;
font-family:helvetica,arial,sans-serif;
position:relative;
}
#centerer{
display:flex;
align-items:center;
justify-content:center;
height:80vh;
width:100vw;
z-index:2;
}
#centered{
padding:2rem;
border-radius:.5rem;
background-color:rgba(64,64,64,.3);
color:white;
text-align:center;
z-index:2;
}
h1{
font-size:400%;
}
a{
display:block;
background-color:#0e5981;
padding:1rem 2rem;
border-radius:.5rem;
color:white;
margin:1.5rem;
transition:all ease .3s;
text-decoration:none;
}
a:hover{
transform:scale(1.2);
}
#parrot{
position:absolute;
font-size:3000%;
bottom:0;
left:20%;
z-index:1;
}
@media only screen and (min-width: 801px){
#parrot{
right:10%;
left:auto;
}
}
</style>
</head>
<body>
<div id="parrot">🦜</div>
<div id="centerer">
<div id="centered">
<h1>404</h1>
<p>Page not found</p>
<a href="index.html">GO BACK</a>
</div>
</div>
</body>
</html>
ErrorDocument 404 http://example.com/404/