Add a simple error code page (mostly for handling 404s)

This commit is contained in:
Samantaz Fox
2023-09-10 17:00:10 +02:00
parent b8afb7bec8
commit 594f25141c
3 changed files with 35 additions and 2 deletions

View File

@@ -326,6 +326,28 @@ input[type="search"]::-webkit-search-cancel-button {
}
/*
* Error page
*/
div.center-hv {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-flow: column;
}
p#error-code, p#error-message {
position: relative;
padding: 0;
margin: 0;
}
p#error-code { font-size: 8em; bottom: 3vh; right: 5vw; }
p#error-message { font-size: 2em; bottom: 2vh; left: 3vw; }
/*
* Responsive rules
*/