Skip to content

Instantly share code, notes, and snippets.

@LarryMatte
Created June 23, 2015 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LarryMatte/a1e1e3d55b7d4cdbae84 to your computer and use it in GitHub Desktop.
Save LarryMatte/a1e1e3d55b7d4cdbae84 to your computer and use it in GitHub Desktop.
the .pulse class has a keyframe
@keyframes pulse {
0%, 100% {
opacity: 0.7;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment