| 1 |
@keyframes elementor-animation-push { |
| 2 |
50% { |
| 3 |
transform: scale(0.8); |
| 4 |
} |
| 5 |
100% { |
| 6 |
transform: scale(1); |
| 7 |
} |
| 8 |
} |
| 9 |
.elementor-animation-push:active, |
| 10 |
.elementor-animation-push:focus, |
| 11 |
.elementor-animation-push:hover { |
| 12 |
animation-name: elementor-animation-push; |
| 13 |
animation-duration: 0.3s; |
| 14 |
animation-timing-function: linear; |
| 15 |
animation-iteration-count: 1; |
| 16 |
} |
| 17 |
|