Created
October 9, 2025 16:29
-
-
Save juanjosezg/ebd72e87867e58686252966f120f202a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @keyframes fadeDown { | |
| from { | |
| opacity: 0; | |
| transform: translate3d(0,-30px,0) | |
| } | |
| to { | |
| opacity: 1; | |
| transform: none | |
| } | |
| } | |
| .elementor-element.fadeInDown { | |
| animation-name: fadeDown | |
| } | |
| @keyframes fadeLeft { | |
| from { | |
| opacity: 0; | |
| transform: translate3d(-30px,0,0) | |
| } | |
| to { | |
| opacity: 1; | |
| transform: none | |
| } | |
| } | |
| .elementor-element.fadeInLeft { | |
| animation-name: fadeLeft | |
| } | |
| @keyframes fadeRight { | |
| from { | |
| opacity: 0; | |
| transform: translate3d(30px,0,0) | |
| } | |
| to { | |
| opacity: 1; | |
| transform: none | |
| } | |
| } | |
| .elementor-element.fadeInRight { | |
| animation-name: fadeRight | |
| } | |
| @keyframes fadeUp { | |
| from { | |
| opacity: 0; | |
| transform: translate3d(0,30px,0) | |
| } | |
| to { | |
| opacity: 1; | |
| transform: none | |
| } | |
| } | |
| .elementor-element.fadeInUp { | |
| animation-name: fadeUp | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment