-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.hbs
72 lines (70 loc) · 1.65 KB
/
error.hbs
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: black;
background-image: url(/assets/images/404.png);
background-repeat: no-repeat;
background-position: right bottom;
background-size: auto 100%;
}
#link {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9001;
}
#text {
position: absolute;
top: 50%;
left: 70px;
right: 50px;
bottom: 50px;
padding: 15px;
padding-bottom: 50px;
background-color: rgba(0, 0, 0, 0.5);
box-shadow: 0 0 25px 50px rgba(0, 0, 0, 0.5);
color: #ccc;
font-family: MS Gothic;
font-size: 20pt;
text-align: left;
text-shadow: 3px 3px 0 rgba(0,0,0,0.8), 0 0 1px rgba(0,0,0,0.01);
line-height: 1.4em;
letter-spacing: 0.65;
}
#logo {
position: absolute;
left: 10%;
top: 10%;
max-width: 50%;
}
@media (max-width: 991px) {
#text {
left: 0;
right: 0;
bottom: 0;
padding-left: 5%;
font-size: 13pt;
}
#logo {
position: static;
max-width: 100%;
background-color: rgba(0,0,0,0.5);
}
}
@media (max-width: 767px) {}
</style>
</head>
<body>
<center>
<a href="/" id="link"></a>
<img src="/logos/error.png" id="logo" />
<p id="text">
'I beg your pardon, but I seem to be malfunctioning a little.<br />I was unable to find the page you are looking for.<br />If you would like, shall I return you to the front page?'
</p>
</center>
</body>
</html>