54 lines
714 B
SCSS
54 lines
714 B
SCSS
@use "variables";
|
|
|
|
@keyframes fullscreen-image-appear {
|
|
from {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
to {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
}
|
|
|
|
@keyframes slideshow {
|
|
0% {
|
|
opacity: 0;
|
|
animation-timing-function: ease-in;
|
|
}
|
|
8% {
|
|
opacity: 1;
|
|
animation-timing-function: ease-out;
|
|
}
|
|
17% {
|
|
opacity: 1;
|
|
}
|
|
25% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes important {
|
|
0% {
|
|
transform: scale(1);
|
|
text-shadow: black 0 0 0;
|
|
color: white;
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.02);
|
|
text-shadow: variables.$clr_dark 0 0 20px;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
text-shadow: black 0 0 0;
|
|
color: white;
|
|
}
|
|
} |