xiaowang/assets/css/partials/animations.scss

37 lines
556 B
SCSS
Raw Normal View History

2022-04-26 18:04:10 +02:00
// ----------------------------------------------------------------------------
2022-04-15 16:45:38 +02:00
// ANIMATIONS
2022-04-26 18:04:10 +02:00
// ----------------------------------------------------------------------------
2022-04-15 16:45:38 +02:00
2022-06-14 16:08:23 +02:00
@keyframes expand-outline {
2022-09-09 15:19:54 +02:00
from {
outline-offset: 0;
}
to {
outline-offset: 2px;
}
2022-06-14 16:08:23 +02:00
}
2022-04-15 16:45:38 +02:00
@keyframes wave-up {
2022-09-09 15:19:54 +02:00
0% {
top: 0;
}
60% {
top: -0.5rem;
}
100% {
top: 0;
}
2022-04-15 16:45:38 +02:00
}
@keyframes wave-down {
2022-09-09 15:19:54 +02:00
0% {
bottom: 0;
}
60% {
bottom: -0.5rem;
}
100% {
bottom: 0;
}
2022-04-15 16:45:38 +02:00
}