Created
September 6, 2016 04:37
-
-
Save Robert-IMT/92fe89b18d2efafa6ec7b8655447e3b8 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
| .error-404 #blink { | |
| -webkit-animation: blink 2s linear infinite; | |
| -moz-animation: blink 2s linear infinite; | |
| animation: blink 2s linear infinite; | |
| font-style: normal; | |
| color: #FFF; | |
| } | |
| @-webkit-keyframes blink { | |
| 50% { color: rgb(255, 255, 255); } | |
| 51% { color: rgba(0, 163, 232, 0); } | |
| 100% { color: rgba(0, 163, 232, 0); } | |
| } | |
| @keyframes blink { | |
| 50% { color: rgb(255, 255, 255); } | |
| 51% { color: rgba(0, 163, 232, 0); } | |
| 100% { color: rgba(0, 163, 232, 0); } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment