-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
93 lines (91 loc) · 2.7 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="author" content="Baruch Mustakis, aka ShoobyD" />
<meta name="description" content="דף שגיאה 404" />
<meta name="keywords" content="ברוך מוסטקיס baruch mustakis שובידי ShoobyD שגיאה error 404 super mario bros nintendo" />
<!-- revised: 21/06/2014 (scheme: dd/mm/yyyy) -->
<title>whoops.. page not found</title>
<style>
body {
height: 100%;
color: #526713;
font: 0.6em Verdana, sans-serif;
line-height: 0.2em;
background: rgba( 164, 196, 32, 0.57 );
}
* {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
#container {
width: 100%;
height: 100%;
top: 0px;
left: 0px;
position: absolute;
border: 24px solid black;
border-radius: 36px;
box-sizing: border-box;
text-align: center;
}
#gba {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#homeLink {
position: relative;
top: -232px;
}
#credit {
position: relative;
top: -42px;
}
a {
color: #526713;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="/assets/404/mario.js"></script>
<link href="/assets/404/mario.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="gba">
<img src="/assets/404/gba.png" alt="Gameboy Advanced" /><br />
<a href="/" title="לעמוד הראשי" id="homeLink">
<img src="/assets/404/shoobyd.png" alt="ShoobyD" />
</a>
<div id="credit">Original Mario background by <a href="http://blog.nihilogic.dk/" onclick="window.open(this.href); return false;">Nihilogic.dk</a></div>
<script>
const btnImg = document.querySelector( '#homeLink img' );
btnImg.addEventListener( 'mouseover', function() { btnImg.src = '/assets/404/shoobyd_red.png' } )
btnImg.addEventListener( 'mouseout', function() { btnImg.src = '/assets/404/shoobyd.png' } )
</script>
</div>
</div>
<div id="mario">
<div class="level">
<img class="mario-text" src="/assets/404/mario_text.png"/>
<div class="mario-sprite"></div>
</div>
</div>
<script src="/assets/404/music.js"></script>
</body>
</html>