forked from sayofthelor/sz-games.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
99 lines (70 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="https://github.com/sz-games/home/blob/main/G.png?raw=true">
<title>Sz Games - 404</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: rgb(41, 41, 41);
margin: 0;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
}
/* Header/Logo Title */
.header {
text-align: center;
width: auto;
font-size: 30px;
}
/* Page Content */
</style>
</head>
<body>
<style>
.bgp1 {
width: 20%;
height: 100%;
transform: rotate(-25deg);
position: absolute;
background-color: rgba(116, 116, 116, 0.569);
left: -200px;
top: 150px;
transition: 0.8;
animation: bgp1 0.8s;
}
.bgp2 {
width: 20%;
height: 100%;
transform: rotate(-25deg);
position: absolute;
background-color: rgba(116, 116, 116, 0.569);
right: -200px;
top: -150px;
transition: 0.8;
animation: bgp2 0.8s;
}
@keyframes bgp1 {
from {left: -400px; opacity: 0; }
to {left: -200px; opacity: 1; }
}
@keyframes bgp2 {
from {right: -400px; opacity: 0; }
to {right: -200px; opacity: 1; }
}
</style>
<div style="border-radius: 15px; border: solid gray 4px; overflow-y: scroll; overflow-x: hidden; z-index: 50; position: absolute; width: 40%; height: 55%; background-color: rgb(32, 32, 32); left: 50%; top: 50%; transform: translate(-50%, -50%);">
<div id="sz Games">
<img src="https://github.com/sz-games/sz-games.github.io/blob/main/G.png?raw=true" style="float: left; position: relative; width: 50px; height: 50px;" alt="img">
<p style="font-size: 20px; float: left;">Sz Games</p>
</div>
<br>
<br>
<p style="left: 10px; font-size: 35px; position: relative;">404</p>
<p style="left: 10px; font-size: 20px; position: relative;">Page Not Found</p>
<!--p style="cursor: pointer; text-decoration: none;" onclick="window.location = 'https://sz-games.github.io'">Find A Game</p-->
</div>
</body>
</html>