-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
138 lines (124 loc) · 3.8 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7">
<![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8">
<![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9">
<![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>(404) The page you were looking for doesn't exist.</title>
<link rel="stylesheet" type="text/css" href="common-font.css" />
<style type="text/css">
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: "Raleway";
background-color: #000;
color: #fff;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
}
h1 {
letter-spacing: 0.04em;
display:inline-block;
color: #fff;
font-weight: bold;
text-decoration:none;
text-rendering: optimizeLegibility;
text-shadow: 3px 6px 7px #1c4060;
font-family: "Proxima Nova";
font-size: 5.3em;
-webkit-transiton: .2s all linear;
}
.error-container {
text-align: center;
height: 100%;
}
@media (max-width: 480px) {
.error-container {
position: relative;
top: 50%;
height: initial;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
.error-container h1 {
margin: 0;
font-size: 130px;
font-weight: 300;
}
@media (min-width: 480px) {
.error-container h1 {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
}
@media (min-width: 768px) {
.error-container h1 {
font-size: 220px;
}
}
.return {
color: rgba(255, 255, 255, 0.6);
font-weight: 400;
letter-spacing: 0.04em;
margin: 0;
}
@media (min-width: 480px) {
.return {
position: absolute;
width: 100%;
bottom: 30px;
}
}
.return a {
padding-bottom: 1px;
color: #fff;
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
-webkit-transition: border-color 0.1s ease-in;
transition: border-color 0.1s ease-in;
}
.return a:hover {
border-bottom-color: #fff;
}
</style>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div style="position: fixed; z-index: -99; width: 100%; height: 100%">
<iframe frameborder="0" height="100%" width="100%" src="index-module-starfield.html"></iframe>
</div>
<div class="error-container">
<h1>404</h1>
<p class="return">Take me back to <a href="index-main.html">DartPower Team site</a></p>
</div>
<script>
$(function() {
$.failsafe({
checkUrl: 'failsafe.css',
checkInterval: 5000,
chargeThreshold: 80
});
});
</script>
</body>
</html>