Last active
November 3, 2020 18:18
-
-
Save blakazulu/b4fd93541cc8bdf94d68f756662c75b6 to your computer and use it in GitHub Desktop.
type-delete - medium demo
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
.blink { | |
border-right-style: solid; | |
animation: 1s blink infinity; | |
} | |
@keyframes blink { | |
to { | |
opacity: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment