rf-web/_sass/layouts/404.scss

74 lines
1.0 KiB
SCSS
Raw 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: $white;
}
.fourohfour {
display: flex;
flex-direction: row;
2020-02-21 11:44:13 +00:00
h1 {
animation: grain 1s steps(10) infinite;
&:first-of-type {
animation-duration: 2s;
}
&:last-of-type {
animation-duration: 3s;
}
}
}
a {
transition: transform 5s ease-in-out;
&:hover {
transform: scale(20) rotate(360deg);
}
}
}
@keyframes grain {
0%,
100% {
transform: translate(0, 0);
}
10% {
transform: translate(-5%, -10%);
}
20% {
transform: translate(-15%, 5%);
}
30% {
transform: translate(7%, -25%);
}
40% {
transform: translate(-5%, 25%);
}
50% {
transform: translate(-15%, 10%);
}
60% {
transform: translate(15%, 0%);
}
70% {
transform: translate(0%, 15%);
}
80% {
transform: translate(3%, 35%);
}
90% {
transform: translate(-10%, 10%);
}
}