Skip to content

Instantly share code, notes, and snippets.

@arcticmatt
Last active July 21, 2021 20:41
Show Gist options
  • Save arcticmatt/8b6bfbca30b4ea5c6ed3a3def5008e06 to your computer and use it in GitHub Desktop.
Save arcticmatt/8b6bfbca30b4ea5c6ed3a3def5008e06 to your computer and use it in GitHub Desktop.
@keyframes blink {
0% {
opacity: 1;
}
49% {
opacity: 1;
}
50% {
opacity: 0;
}
95% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.blink {
animation: blink 1s linear 0s infinite normal none running;
}
.cursor {
background-color: var(--color-navy);
height: 34px;
margin-left: 2px;
width: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment