Skip to content

Instantly share code, notes, and snippets.

@fuzzylimes
Created December 26, 2017 16:05
Show Gist options
  • Save fuzzylimes/845b950d890c8e241d5c0dae5c4f8986 to your computer and use it in GitHub Desktop.
Save fuzzylimes/845b950d890c8e241d5c0dae5c4f8986 to your computer and use it in GitHub Desktop.
<div class="pulse red live"></div>
<h3 class="live">LIVE!</h3>
.live {
float: left;
}
.pulse {
margin-right: 10px;
margin-top: 1.5em;
width: 10px;
height: 10px;
border-radius: 5px;
}
@-webkit-keyframes redPulse {
from {
background-color: #bc330d;
//-webkit-box-shadow: 0 0 9px #333;
}
50% {
background-color: #e33100;
-webkit-box-shadow: 0 0 18px #e33100;
}
to {
background-color: #bc330d;
//-webkit-box-shadow: 0 0 9px #333;
}
}
div.pulse.red {
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment