mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-14 11:39:22 +01:00
27 lines
311 B
SCSS
27 lines
311 B
SCSS
|
div.error404 {
|
||
|
margin: 25% auto;
|
||
|
|
||
|
h1 {
|
||
|
margin: 0;
|
||
|
font-size: 4rem;
|
||
|
color: var(--fgColor);
|
||
|
background-color: var(--bgColor);
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
margin: 0;
|
||
|
color: var(--fgColor);
|
||
|
text-align: center;
|
||
|
|
||
|
&::before {
|
||
|
content: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (max-width: 650px) {
|
||
|
div.error404 {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|