Update 404.html

This commit is contained in:
Eric Lay 2024-03-28 12:12:06 -05:00 committed by GitHub
parent 52d44ba574
commit 60158cd5d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 31 additions and 1 deletions

View File

@ -2,7 +2,6 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/templates/404styles.css" />
<title>Fuck Your Day</title> <title>Fuck Your Day</title>
<script language="JavaScript" type="text/javascript"> <script language="JavaScript" type="text/javascript">
setTimeout(function () { setTimeout(function () {
@ -12,6 +11,37 @@
</script> </script>
</head> </head>
{% block body %} {% block body %}
<style>
:root {
--blue: #0e0620;
--white: #fff;
}
html,
body {
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: "system-ui";
color: var(--blue);
font-size: 1em;
}
h1 {
font-size: 7.5em;
margin: 15px 0px;
font-weight: bold;
}
h2 {
font-weight: bold;
}
@media screen and (max-width: 768px) {
body {
display: block;
}
}
</style>
<div> <div>
<h1>404</h1> <h1>404</h1>
<h2>You're so lost.</h2> <h2>You're so lost.</h2>