Created
November 19, 2018 13:46
-
-
Save DylanCodeCabin/d7907d6a4d02c38b5e721ef819c8d110 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
#wp-live-chat-header { | |
-webkit-animation: wplc-pulse 1s infinite !important; | |
-moz-animation: wplc-pulse 1s infinite !important; | |
-o-animation: wplc-pulse 1s infinite !important; | |
animation: wplc-pulse 1s infinite !important; | |
animation-name: wplc-pulse !important; | |
animation-duration: 1s !important; | |
animation-timing-function: ease !important; | |
animation-delay: 0s !important; | |
animation-iteration-count: infinite !important; | |
animation-direction: normal !important; | |
animation-fill-mode: none !important; | |
animation-play-state: running !important; | |
} | |
@keyframes wplc-pulse { | |
0% { | |
-webkit-box-shadow: 0 0 0 0 #3c763d; | |
-moz-box-shadow: 0 0 0 0 #3c763d; | |
-o-box-shadow: 0 0 0 0 #3c763d; | |
box-shadow: 0 0 0 0 #3c763d | |
} | |
70% { | |
-webkit-box-shadow: 0 0 0 15px rgba(204,169,44,0); | |
-moz-box-shadow: 0 0 0 15px rgba(204,169,44,0); | |
-o-box-shadow: 0 0 0 15px rgba(204,169,44,0); | |
box-shadow: 0 0 0 15px rgba(204,169,44,0) | |
} | |
100% { | |
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44,0); | |
-moz-box-shadow: 0 0 0 0 rgba(204,169,44,0); | |
-o-box-shadow: 0 0 0 0 rgba(204,169,44,0); | |
box-shadow: 0 0 0 0 rgba(204,169,44,0) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment