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

46 lines
492 B
SCSS
Raw Normal View History

2019-12-17 18:05:46 +01:00
// pulse
2019-12-17 21:36:38 +01:00
2019-12-17 18:05:46 +01:00
@keyframes pulse {
2021-08-18 20:38:12 +02:00
0% {
transform: scale(1);
}
2019-12-17 18:05:46 +01:00
2021-08-18 20:38:12 +02:00
50% {
transform: scale(0.8);
}
2019-12-17 18:05:46 +01:00
2021-08-18 20:38:12 +02:00
100% {
transform: scale(1);
}
2020-06-15 20:45:19 +02:00
}
@keyframes fade {
2021-08-18 20:38:12 +02:00
0% {
filter: grayscale(0);
opacity: 1;
}
50% {
filter: grayscale(1);
opacity: 0.5;
}
100% {
filter: grayscale(0);
opacity: 1;
}
}
@keyframes expand {
2021-08-18 20:38:12 +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
}