Skip to content

Commit

Permalink
Improve 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
randomairborne committed Mar 25, 2024
1 parent ed3797b commit d174171
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<body>
<div class="stack">
<div>404 not found</div>
<a href="/" class="home">Go home?</a>
</div>
</body>
</html>
9 changes: 8 additions & 1 deletion src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ body {
}

.stack {
display: inline;
display: flex;
flex-direction: column;
font-size: 3vw;
font-family: Arial, Verdana, Helvetica, sans-serif;
justify-content: center;
align-items: center;
}

.home {
font-size: 2vw;
}

0 comments on commit d174171

Please sign in to comment.