forked from sk66641/Random-Disco-Light-Simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
135 lines (124 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/images/favicon/favicon.ico" type="image/x-icon" />
<title>Error - 404</title>
<style>
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
}
.text1 {
background-image: url(./assets/images/Stars.jpg);
background-clip: text;
color: transparent;
font-size: 225px;
background-size: cover;
font-weight: 900;
margin-bottom: 50px;
}
.text2 {
text-transform: uppercase;
font-weight: 800;
font-size: 30px;
margin-bottom: 40px;
}
.text3 {
font-size: x-large;
width: 700px;
text-align: center;
margin-bottom: 30px;
}
a {
text-transform: uppercase;
background-color: rgb(0, 106, 255);
color: white;
text-decoration: none;
width: 200px;
height: 50px;
font-weight: bolder;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
}
.container a:hover{
background-color: rgb(0, 86, 204);
}
@media only screen and (max-width:705px){
.container{
width: 100vw;
height: 100vh;
}
.text1{
font-size: 175px;
}
.text2{
font-size: 20px;
}
.text3{
font-size: 16px;
width: 500px;
}
}
@media only screen and (max-width:565px){
.container{
width: 100vw;
height: 100vh;
}
.text1{
font-size: 125px;
}
.text2{
font-size: 18px;
}
.text3{
font-size: 16px;
width: 400px;
}
a{
width: 155px;
font-size: 12px;
height: 30px;
}
}
@media only screen and (max-width:425px){
.container{
width: 100vw;
height: 100vh;
}
.text1{
font-size: 100px;
}
.text2{
font-size: 15px;
}
.text3{
font-size: 12px;
width: 300px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="text1">Oops!</div>
<div class="text2">404 - Page not Found</div>
<div class="text3">The page you are looking for might have been removed, had its name changed or is temporarily
unavailable.</div>
<a href="/">Go to HomePage</a>
</div>
</body>
</html>