30 lines
454 B
CSS
30 lines
454 B
CSS
#notfound {
|
|
--color: var(--dark) linear-gradient(#0000, #0003);
|
|
flex: 99999999999999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: white;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
#notfound > * {
|
|
max-width: 300px;
|
|
}
|
|
|
|
#text-outer > i {
|
|
font-size: 30px;
|
|
}
|
|
|
|
#text-outer {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: 25px;
|
|
}
|
|
|
|
#text-404 {
|
|
font-size: 160px;
|
|
line-height: 1;
|
|
} |