rf-web/_sass/layouts/404.scss

30 lines
435 B
SCSS
Raw Permalink Normal View History

.error-404 {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2020-02-21 11:44:13 +00:00
h1,
p,
a,
strong {
color: var(--colour-graphite);
@include darkMode {
background-color: var(--colour-white);
padding: var(--size-base);
}
2020-02-21 11:44:13 +00:00
}
.fourohfour {
display: flex;
flex-direction: row;
}
a {
transition: transform 5s ease-in-out;
}
}