-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.html
executable file
·172 lines (144 loc) · 4.23 KB
/
403.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>403 Error - Forbidden</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
/* @group Terminalish */
body {
background-color: #0000AA;
font-family: "Courier New", Menlo;
font-size: 13px;
font-weight: bold;
color: #ffffff;
}
#content {
margin: 0 auto;
padding-top: 80px;
width: 640px;
height: 300px;
text-align: left;
}
h1.headline {
margin: 0 auto;
background-color: #AAAAAA;
color: #0000AA;
padding: 2px 5px 2px 5px;
font-size: 14px;
width: 230px;
min-width: 130px;
text-align: center;
float: center;
}
p {
line-height: 1.5em;
}
.continue {
text-align: center;
}
/* @end */
/* @group Konami */
#konami {
position: fixed;
right:-900px;
width: 900px;
}
/* @end */
/* @group Real-World CSS */
/**
* Real-World CSS
* by @visualidiot. Licensed under WTPFL.
*/
.blink {
-webkit-animation: blink .75s linear infinite;
-moz-animation: blink .75s linear infinite;
-ms-animation: blink .75s linear infinite;
-o-animation: blink .75s linear infinite;
animation: blink .75s linear infinite;
}
@-webkit-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-moz-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-ms-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-o-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
.wordart {
color: #333; /* This is for non-webkit browsers */
-webkit-text-fill-color: transparent;
position: relative;
display: inline-block;
font: bold 48px "Arial Narrow", sans-serif;
}
.wordart:before {
content: attr(title);
position: absolute;
left: 0;
top: 0;
z-index: 2;
background: -webkit-linear-gradient(left, rgb(176,9,151) 0%, rgb(227,33,107) 10%, rgb(249,96,30) 25%, rgb(255,180,18) 40%, rgb(255,216,45) 50%, rgb(185,221,23) 61%, rgb(65,160,60) 75%, rgb(19,54,180) 90%, rgb(116,27,157) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.wordart:after {
content: attr(title);
position: absolute;
z-index: 199;
left: -6px;
bottom: -10px;
z-index: 1;
-webkit-text-fill-color: #000;
-webkit-transform: skew(40deg, 0deg) scaleY(.5);
opacity: .3;
}
/* @end */
</style>
</head>
<body>
<div id="content">
<h1 class="headline">403 Error - Forbidden</h1>
<p>A fatal 403 exception has occurred. The current page request will be terminated.</p>
<ul>
<li>Press the back button to return to the previous page.</li>
<li>Send us an e-mail to let us know about this or enter Konami code.</li>
<li>Press CTRL+ALT+DEL again to restart your computer. You will</br>
lose any unsaved information in all applications.</li>
</ul>
<p class="continue">Press any key to continue <span class="blink">_</span></p><br />
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://static.yeahwh.at/js/mousetrap.min.js"></script>
<script type="text/javascript">
Mousetrap.bind('up up down down left right left right b a', function() {
$('#konami').animate({"right": '+=1000'}, 3000).delay(10).animate({"right": '+=1200'}, 2000).delay(2).animate({"right": '+=1200'}, 2000);
});
</script>
<div id="konami">
<img src="http://static.yeahwh.at/images/unicorn.gif" />
<h1 class="wordart" title="WROOOM!!!11">WROOOM!!!11</h1>
</div>
</body>
</html>