Created
April 29, 2015 14:18
-
-
Save gustaff-weldon/4aa7979ed49dcdc30d50 to your computer and use it in GitHub Desktop.
Untitled
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
.cursor { | |
font-weight: 100; | |
font-size: 30px; | |
color: black; | |
} | |
.blinking { | |
-webkit-animation: 1s blink step-end infinite; | |
-moz-animation: 1s blink step-end infinite; | |
-ms-animation: 1s blink step-end infinite; | |
-o-animation: 1s blink step-end infinite; | |
animation: 1s blink step-end infinite; | |
} | |
@-moz-keyframes blink { | |
from,to { color: transparent;} 50% { color: black; } | |
} | |
@-webkit-keyframes blink { | |
from,to { color: transparent;} 50% { color: black; } | |
} | |
@-ms-keyframes blink { | |
from,to { color: transparent;} 50% { color: black; } | |
} | |
@-o-keyframes blink { | |
from,to { color: transparent;} 50% { color: black; } | |
} | |
@keyframes blink { | |
from,to { color: transparent;} 50% { color: black; } | |
} |
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
<span class="cursor blinking">|</span> |
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
// alert('Hello world!'); |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment