dumb/style/error.css

22 lines
287 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: #eee;
}
#error p {
text-transform: uppercase;
font-size: 1.6rem;
2024-03-09 21:40:20 +01:00
color: #ddd;
text-align: center;
}