Created
December 26, 2017 16:05
-
-
Save fuzzylimes/845b950d890c8e241d5c0dae5c4f8986 to your computer and use it in GitHub Desktop.
Simple CSS "Live" icon, variation on https://gist.github.com/aschuch/5264707. https://codepen.io/anon/pen/eygvoJ
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
<div class="pulse red live"></div> | |
<h3 class="live">LIVE!</h3> |
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
.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