Files
Brooke Kuhlmann 81c5f67fa9 Added project skeleton
Generated with link:https://alchemists.io/projects/hanamismith[Hanamismith] 1.4.0. This includes the link:https://github.com/minimagick/minimagick[MiniMagick] gem for converting images into black and white images for display on TRMNL devices.
2025-03-11 20:02:36 -06:00

58 lines
1.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404: Not Found</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body,
html {
font-size: 100%;
max-width: 100vw;
overflow-x: hidden;
}
body {
color: whitesmoke;
background: darkred;
font-family: Roboto,Arial,sans-serif,Emoji;
font-style: normal;
}
main {
align-items: center;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
padding: 0 4vw;
}
.message {
display: flex;
flex-direction: column;
gap: 1rem;
text-align: center;
}
</style>
</head>
<body>
<main>
<div class="message">
<h1>404</h1>
<p>The page you are looking for doesnt exist.</p>
</div>
</main>
</body>
</html>