Skip to content

Instantly share code, notes, and snippets.

@gmcusaro
Created January 8, 2022 14:40
Show Gist options
  • Save gmcusaro/1f903dfb6bccbd2de8ef6fc6118644f4 to your computer and use it in GitHub Desktop.
Save gmcusaro/1f903dfb6bccbd2de8ef6fc6118644f4 to your computer and use it in GitHub Desktop.
Pulse point
.live {
height: 1em;
width: 1em;
border-radius: 50%;
background-color: #ff69b4;
animation: pulse 1500ms infinite;
}
@keyframes pulse {
0% {
box-shadow: #ff69b4 0 0 0 0;
}
75% {
box-shadow: #ff69b400 0 0 0 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment