xiaowang/assets/css/partials/_animations.scss

70 lines
794 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
@-webkit-keyframes expand-outline {
from {
outline-offset: 0;
}
to {
outline-offset: 2px;
}
}
@keyframes expand-outline {
from {
outline-offset: 0;
}
to {
outline-offset: 2px;
}
}
2022-04-15 16:45:38 +02:00
@-webkit-keyframes wave-up {
0% {
top: 0;
}
60% {
top: -0.5rem;
}
100% {
top: 0;
}
}
@keyframes wave-up {
0% {
top: 0;
}
60% {
top: -0.5rem;
}
100% {
top: 0;
}
}
@-webkit-keyframes wave-down {
0% {
bottom: 0;
}
60% {
bottom: -0.5rem;
}
100% {
bottom: 0;
}
}
@keyframes wave-down {
0% {
bottom: 0;
}
60% {
bottom: -0.5rem;
}
100% {
bottom: 0;
}
}