-
-
Save juniorinvernizzi/89f66b133271789dbd0b7b8dbaf0dbfa to your computer and use it in GitHub Desktop.
Add no CSS
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
| .botao-pulsar .elementor-button { | |
| animation: pulsar 2s infinite; | |
| } | |
| .botao-pulsar .elementor-button:hover { | |
| animation: none; | |
| } | |
| @keyframes pulsar { | |
| 0% { | |
| -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0.5); | |
| box-shadow: 0 0 0 0 rgba(0,0,0, 0.4); | |
| } | |
| 70% { | |
| -moz-box-shadow: 0 0 0 8px rgba(0,0,0, 0); | |
| box-shadow: 0 0 0 8px rgba(0,0,0, 0); | |
| } | |
| 100% { | |
| -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0); | |
| box-shadow: 0 0 0 0 rgba(0,0,0, 0); | |
| } | |
| } | |
| @-webkit-keyframes pulsar { | |
| 0% { | |
| -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0.5); | |
| } | |
| 70% { | |
| -webkit-box-shadow: 0 0 0 8px rgba(0,0,0, 0); | |
| } | |
| 100% { | |
| -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment