Last active
July 15, 2021 17:27
-
-
Save kingRayhan/8e26edf20c322e32033e01842cb05f59 to your computer and use it in GitHub Desktop.
This file contains 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
.\? { | |
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