Skip to content

Instantly share code, notes, and snippets.

@gustaff-weldon
Created April 29, 2015 14:18
Show Gist options
  • Save gustaff-weldon/4aa7979ed49dcdc30d50 to your computer and use it in GitHub Desktop.
Save gustaff-weldon/4aa7979ed49dcdc30d50 to your computer and use it in GitHub Desktop.
Untitled
.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; }
}
<span class="cursor blinking">|</span>
// alert('Hello world!');
{"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