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
|
|
|
}
|
|
|
|
|
2022-02-28 12:31:29 +01:00
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: scale(0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2021-02-18 03:12:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@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
|
|
|
}
|