julienmonnerie/assets/css/partials/animations.scss

29 lines
505 B
SCSS
Raw Normal View History

2022-06-17 17:51:59 +02:00
// ----------------------------------------------------------------------------
// ANIMATIONS
// ----------------------------------------------------------------------------
2022-07-06 17:18:42 +02:00
@keyframes expand-outline {
2022-07-28 18:59:14 +02:00
0% {
2022-07-06 17:18:42 +02:00
outline-offset: 0;
}
2022-07-28 18:59:14 +02:00
100% {
2022-07-06 17:18:42 +02:00
outline-offset: 2px;
}
}
2022-07-28 18:59:14 +02:00
@keyframes rotate-horizontal-bottom {
0% {
transform: rotateX(0);
transform-origin: bottom;
}
50% {
transform: rotateX(180deg);
transform-origin: bottom;
}
100% {
transform: rotateX(0);
transform-origin: bottom;
}
}