mirror of
https://github.com/usetrmnl/terminus.git
synced 2026-08-13 14:29:27 -07:00
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.
58 lines
1.0 KiB
HTML
58 lines
1.0 KiB
HTML
<!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 doesn’t exist.</p>
|
||
</div>
|
||
</main>
|
||
</body>
|
||
</html>
|