Skip to content

Instantly share code, notes, and snippets.

@DioVayne
Created June 13, 2018 11:45
Show Gist options
  • Save DioVayne/8f2da23295ac26bc5a2d35322fea1c14 to your computer and use it in GitHub Desktop.
Save DioVayne/8f2da23295ac26bc5a2d35322fea1c14 to your computer and use it in GitHub Desktop.
radial-pulse
@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