Skip to content

Instantly share code, notes, and snippets.

@DylanCodeCabin
Created November 19, 2018 13:46
Show Gist options
  • Save DylanCodeCabin/d7907d6a4d02c38b5e721ef819c8d110 to your computer and use it in GitHub Desktop.
Save DylanCodeCabin/d7907d6a4d02c38b5e721ef819c8d110 to your computer and use it in GitHub Desktop.
#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