Created
January 8, 2022 14:40
-
-
Save gmcusaro/1f903dfb6bccbd2de8ef6fc6118644f4 to your computer and use it in GitHub Desktop.
Pulse point
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 { | |
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