Files
gallery/templates/404.html
2024-08-10 16:54:54 +02:00

130 lines
2.5 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Are you lost?</title>
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<link rel="manifest" href="/assets/img/site.webmanifest">
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: #111111;
}
#notfound {
position: relative;
height: 100vh;
}
#notfound .notfound {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.notfound {
max-width: 710px;
width: 100%;
text-align: center;
padding: 0px 15px;
line-height: 1.4;
}
.notfound .notfound-404 {
height: 200px;
line-height: 200px;
}
.notfound .notfound-404 h1 {
font-family: 'Fredoka One', cursive;
font-size: 168px;
margin: 0px;
color: #ff508e;
text-transform: uppercase;
}
.notfound h2 {
font-family: 'Raleway', sans-serif;
font-size: 22px;
font-weight: 400;
text-transform: uppercase;
color: #FFF;
margin: 0;
}
.notfound-search {
position: relative;
padding-right: 123px;
max-width: 420px;
width: 100%;
margin: 30px auto 22px;
}
.notfound a {
font-family: 'Raleway', sans-serif;
display: inline-block;
font-weight: 700;
border-radius: 15px;
text-decoration: none;
color: #39b1cb;
}
.notfound a>.arrow {
position: relative;
top: -2px;
border: solid #39b1cb;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
}
@media only screen and (max-width: 767px) {
.notfound .notfound-404 {
height: 122px;
line-height: 122px;
}
.notfound .notfound-404 h1 {
font-size: 122px;
}
}
</style>
</head>
<body>
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>404</h1>
</div>
<h2>Oops, The Page you are looking for can't be found!</h2>
<a href="/"><span class="arrow"></span>Return To Homepage</a>
</div>
</div>
</html>