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

45 lines
447 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 {
2020-06-15 20:45:19 +02:00
0% {
transform: scale(1);
}
2019-12-17 18:05:46 +01:00
2020-06-15 20:45:19 +02:00
50% {
transform: scale(0.8);
}
2019-12-17 18:05:46 +01:00
2020-06-15 20:45:19 +02:00
100% {
transform: scale(1);
}
}
@keyframes fade {
0% {
opacity: 1;
filter: grayscale(0);
2020-06-15 20:45:19 +02:00
}
50% {
opacity: 0.5;
filter: grayscale(1);
2020-06-15 20:45:19 +02:00
}
100% {
opacity: 1;
filter: grayscale(0);
}
}
@keyframes expand {
from {
max-height: 0;
overflow: hidden;
}
to {
max-height: 500rem;
max-height: 200vh;
overflow: visible;
2020-06-15 20:45:19 +02:00
}
2019-12-17 18:05:46 +01:00
}