dumb/style/error.css

30 lines
356 B
CSS
Raw Normal View History

#error {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
padding: 2rem;
flex-grow: 1;
}
#error h1 {
font-size: 5rem;
color: #111;
}
#error p {
text-transform: uppercase;
font-size: 1.6rem;
color: #222;
text-align: center;
}
2024-03-09 21:40:20 +01:00
.dark #error h1 {
color: #eee;
}
2024-03-09 21:40:20 +01:00
.dark #error p {
color: #ddd;
}