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