Created
June 13, 2018 11:45
-
-
Save DioVayne/8f2da23295ac26bc5a2d35322fea1c14 to your computer and use it in GitHub Desktop.
radial-pulse
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
@keyframes radial-pulse { | |
0% { | |
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5); | |
} | |
100% { | |
box-shadow: 0 0 0 30px rgba(0, 0, 0, 0); | |
} | |
} | |
div { | |
margin: 3em; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
width: 100px; | |
height: 100px; | |
color:white; | |
font-weight:bold; | |
font-family: Arial; | |
background: rgba(0,0,255,0.75); | |
border-radius: 50%; | |
animation: radial-pulse 1s infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment