forked from spencerthayer/ezIPTV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
68 lines (67 loc) · 1.31 KB
/
404.php
File metadata and controls
68 lines (67 loc) · 1.31 KB
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<style>
* {
box-sizing: border-box;
-webkit-animation: fadeIn 2s;
animation: fadeIn 2s;
}
body {
background-color: #111;
color: #fafafa;
font-family: 'Montserrat', sans-serif;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
height: 100vh;
width: 100vw;
}
h1 {
font-size: 110px;
margin: 4px;
display: inline-block;
color: #FF2D38;
}
h1:nth-of-type(2) {padding-top:20px;}
h2 {
font-size: 16px;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
a {
position:absolute;
color: #FF2D38;
text-decoration: none;top:10px;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700|Montserrat:400,700&subset=latin-ext" rel="stylesheet">
</head>
<body>
<a href="/">RETURN HOME</a>
<h1>404</h1>
<h2>page not found</h2>
<h1>😭</h1>
</body>
</html>