webpack-bootstrap-ui-kit/src/scss/_animations.scss

48 lines
580 B
SCSS
Raw Normal View History

2019-12-17 18:05:46 +01:00
// pulse
2022-02-28 12:31:29 +01:00
@keyframes pulse {
2022-06-24 16:27:25 +02:00
0% {
transform: scale(1);
}
2022-02-28 12:31:29 +01:00
2022-06-24 16:27:25 +02:00
50% {
transform: scale(.8);
}
2022-02-28 12:31:29 +01:00
2022-06-24 16:27:25 +02:00
100% {
transform: scale(1);
}
2022-02-28 12:31:29 +01:00
}
2020-06-15 20:45:19 +02:00
@keyframes fade {
2022-06-24 16:27:25 +02:00
0% {
filter: grayscale(0);
opacity: 1;
}
50% {
filter: grayscale(1);
opacity: .5;
}
100% {
filter: grayscale(0);
opacity: 1;
}
}
@keyframes expand {
2022-06-24 16:27:25 +02:00
from {
max-height: 0;
overflow: hidden;
}
to {
max-height: 500rem;
max-height: 200vh;
overflow: visible;
}
2019-12-17 18:05:46 +01:00
}