added a 404 page
This commit is contained in:
parent
d779761de7
commit
eca1457225
2 changed files with 79 additions and 0 deletions
63
404.css
Normal file
63
404.css
Normal file
|
@ -0,0 +1,63 @@
|
|||
body {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
font-family: monospace;
|
||||
background-color: #2a2a2a;
|
||||
transition: background-color 0.3s, color 0.3s;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.main {
|
||||
text-align: center;
|
||||
background-color: #4b4b4b;
|
||||
border-radius: 8px;
|
||||
padding: 30px 100px;
|
||||
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
|
||||
width: 30vw;
|
||||
max-width: 30vw;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #c099ff;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: #c099ff;
|
||||
color: #2a2a2a;
|
||||
}
|
||||
|
||||
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.main {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
h1 {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
16
404.html
Normal file
16
404.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 Error Not Found</title>
|
||||
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="404.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<h1>Looks like you found an unfinished site or were redirected to the wrong page!</h1>
|
||||
<h2>Go back to the <a href="https://fentseller.lol">main page</a> or <a href="https://github.com/zyqunix/tools/issues/new">open an issue on my GitHub</a></h3>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue