Last active
October 4, 2020 00:28
-
-
Save wisehackermonkey/4380a0ff297790cde689e4bfe7c5d477 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
background: #222; | |
color: #bada55; | |
font-size: 100px; | |
background: url('https://bit.ly/3ne3gaQ') 0 0; | |
animation: blinker 1s linear infinite; | |
opacity: 0; | |
/* blink { | |
animation: blinker 0.6s linear infinite; | |
color: #1c87c9; | |
} | |
@keyframes blinker { | |
50% { opacity: 0; } | |
} | |
.blink-one { | |
animation: blinker-one 1s linear infinite; | |
} | |
@keyframes blinker-one { | |
0% { opacity: 0; } | |
} | |
.blink-two { | |
animation: blinker-two 1.4s linear infinite; | |
} | |
@keyframes blinker-two { | |
100% { opacity: 0; } | |
} */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment