Skip to content

Instantly share code, notes, and snippets.

@kingRayhan
Last active July 15, 2021 17:27
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 kingRayhan/8e26edf20c322e32033e01842cb05f59 to your computer and use it in GitHub Desktop.
Save kingRayhan/8e26edf20c322e32033e01842cb05f59 to your computer and use it in GitHub Desktop.
.\? {
position: relative;
}
.\?::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 5px solid transparent;
animation: blink 1000ms;
animation-iteration-count: infinite;
}
@keyframes blink {
50% {
border-color: #ff0000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment