Skip to content

Instantly share code, notes, and snippets.

@madkap
Created October 22, 2014 22:52
Show Gist options
  • Save madkap/00da6661cd82f8f018bd to your computer and use it in GitHub Desktop.
Save madkap/00da6661cd82f8f018bd to your computer and use it in GitHub Desktop.
blinking cursor
// from http://codepen.io/ArtemGordinsky/pen/GnLBq
// using http://bourbon.io/docs/#animation
@include keyframes(blink) {
from, to {
color: transparent;
}
50% {
color: black;
}
}
.blink-cursor {
&:before{
content: '|';
@include animation(blink 1s step-end infinite);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment