ops/templates/web/404.html

94 lines
1.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>Tilde Black - Page not found</title>
<style type="text/css">
/* --------- FONTS ----------- */
@font-face {
font-family: 'blankaregular';
font-display: swap;
src: url('/assets/blanka-regular-webfont.woff2') format('woff2'),
url('/assets/blanka-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/* --------- TYPES ----------- */
html,
body {
position: relative;
width: 100%;
height: 100%;
margin: 0;
overflow-x: hidden;
background-color: #2f2f2f;
color: #f2f2f2;
font-size: 18px;
line-height: 1.4em;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
html,
body {
scroll-behavior: auto;
}
}
a {
color: #fd9beb;
text-decoration: none;
display: inline-block;
}
p {
margin: 0 0 25px 0;
}
a::after {
content: '';
display: block;
width: 100%;
height: 1px;
transform: scaleX(0);
transform-origin: left center;
transition: background-color 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
background-color: #fd9beb;
}
a:hover::after {
transform: scaleX(1);
}
h1 {
font-family: "blankaregular";
font-size: 62px;
line-height: 1.4em;
text-align: center;
}
.error {
display: grid;
justify-items: center;
align-items: center;
min-height: 80vh;
}
.error-block {
text-align: center;
}
</style>
</head>
<body>
<div class="error">
<div class="error-block">
<h1>Page not found</h1>
<p>We're sorry, but there is no page at this location. Why not go back and tray again, or <a href="/">return to the homepage</a></p>
</div>
</div>
</body>
</html>