fuckyourday/templates/error.html

45 lines
1010 B
HTML
Raw Permalink Normal View History

2024-03-29 16:04:34 -05:00
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fuck Your Day</title>
<script language="JavaScript" type="text/javascript">
setTimeout(function () {
location.replace("https://fuckyour.day/");
}, 7000);
setTimeout(7000);
</script>
<style>
:root {
--blue: #0e0620;
--white: #fff;
}
html,
body {
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: "system-ui";
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>
</head>
{% block content %} {% endblock %}
</html>