-
Notifications
You must be signed in to change notification settings - Fork 2
/
error.html
122 lines (106 loc) · 2.53 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
---
layout: error
title: Error Page
slug: error
lead: "You have reached an error page."
base_url: "../"
---
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
body {
position: relative;
}
div#shell {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
width: 100%;
height: 100%;
background:
url('https://dl.dropboxusercontent.com/u/11221717/hero-texture.png') repeat,
url('https://dl.dropboxusercontent.com/u/11221717/mountains.png') center bottom no-repeat;
z-index: 1;
}
img {
width: 100%;
}
img#background-clouds {
position: absolute;
opacity: 1;
margin-top: -100px;
z-index: 4;
}
.error-links {
padding-bottom: 40px
}
.error-lead {
font-size: 32px;
position: relative;
color: #2c3c5c;
z-index: 6;
}
.error-sub {
text-align: center;
color: #627990;
z-index: 7;
}
.spin-container {
position: relative;
margin: 80px auto;
width: 117px;
height: 120px;
}
.links-lead {
position: relative;
margin: 80px auto;
}
.error-container {
text-align: center;
}
.links-container {
width: 500px;
margin: 20px auto;
text-align: center;
}
.links-container a {
padding: 40px;
text-align: center;
}
a.more {
font-size: 18px;
}
#eb-logo {
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); }
</style>
<script type="text/javascript">
$(document).ready(function () {
$('#shell #background-clouds').plaxify()
$.plax.enable()
})
</script>
</head>
<body>
<div id="shell">
<img src="https://dl.dropboxusercontent.com/u/11221717/error-cloud-background-2.png" data-xrange="20" data-yrange="10" id="background-clouds"/>
<div class="spin-container">
<img id="eb-logo" src="https://beta.elasticbox.com/images/logo-errors.png"></img>
</div>
<div class="error-container">
<h2 class="error-lead">404. This is not the page you're looking for.</h2>
<h3 class="error-sub">You do not have access to this page.</h3>
<h4 class="links-lead">Try these links instead. <a class="more" href="">Home</a> or <a class="more" href="">Email Support</a>.</h4>
</div>
</div>
</body>