forked from usmanhalalit/charisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
96 lines (82 loc) · 2.31 KB
/
error.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Creepster|Audiowide' rel='stylesheet' type='text/css'>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: arial, helvetica, sans-serif;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAUElEQVQYV2NkYGAwBuKzQAwDID4IoIgxIikAMZE1oRiArBDdZBSNMIXoJiFbDZYDKcSmCOYimDuNSVKIzRNYrUYOFuQgweoZbIoxgoeoAAcAEckW11HVTfcAAAAASUVORK5CYII=) repeat;
background-color: #212121;
color: white;
font-size: 28px;
padding-bottom: 20px;
}
.error-code {
font-family: 'Creepster', cursive, arial, helvetica, sans-serif;
font-size: 200px;
color: white;
color: rgba(255, 255, 255, 0.98);
width: 50%;
text-align: right;
margin-top: 5%;
text-shadow: 5px 5px hsl(0, 0%, 25%);
float: left;
}
.not-found {
font-family: 'Audiowide', cursive, arial, helvetica, sans-serif;
width: 45%;
float: right;
margin-top: 5%;
font-size: 50px;
color: white;
text-shadow: 2px 2px 5px hsl(0, 0%, 61%);
padding-top: 70px;
}
.clear {
float: none;
clear: both;
}
.content {
text-align: center;
line-height: 30px;
}
input[type=text] {
border: hsl(247, 89%, 72%) solid 1px;
outline: none;
padding: 5px 3px;
font-size: 16px;
border-radius: 8px;
}
a {
text-decoration: none;
color: #9ECDFF;
text-shadow: 0px 0px 2px white;
}
a:hover {
color: white;
}
</style>
<title>Error</title>
</head>
<body>
<p class="error-code">
404
</p>
<p class="not-found">Not<br/>Found</p>
<div class="clear"></div>
<div class="content">
The page your are looking for is not found.
<br>
<a href="index.html">Go Home</a>
or
<br>
<br>
<form>Search<br><input autofocus type="text" name="search"/></form>
</div>
</body>
</html>