exozyme-errors/50x/index.css
2024-01-27 21:25:40 -05:00

57 lines
809 B
CSS

html,body {
height: 100%;
}
body {
margin: 0;
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.error-text-container {
margin-bottom: 4rem;
}
.error-text {
font-size: 2rem;
margin: 0;
text-align: center;
}
.logo-container {
display: flex;
align-items: center;
text-decoration: none;
color: black;
}
.logo-container > * + *{
display: inline-flex;
text-align: center;
margin-left: 1rem;
}
.logo {
width: 7rem;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
.logo-container {
color: #cccccc;
}
}