Skip to content

Instantly share code, notes, and snippets.

@jetsloth
Last active September 6, 2022 01:07
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 jetsloth/2280e65c8d54b5ed94a6e9f6fb99f490 to your computer and use it in GitHub Desktop.
Save jetsloth/2280e65c8d54b5ed94a6e9f6fb99f490 to your computer and use it in GitHub Desktop.
/*Add the class pulse to any field you want to pulse*/
.pulse input,
.pulse textarea {
animation: pulse-animation 3s infinite;
}
@keyframes pulse-animation {
0% {
box-shadow: 0 0 0 0px #2d6dec;
}
100% {
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment