Skip to content

Instantly share code, notes, and snippets.

@jondashkyle
Last active April 5, 2017 16:27
Show Gist options
  • Save jondashkyle/671cd1d7ceb42795bfe3661ec9c75234 to your computer and use it in GitHub Desktop.
Save jondashkyle/671cd1d7ceb42795bfe3661ec9c75234 to your computer and use it in GitHub Desktop.
css tricks
/**
* hide the cursor in an input field
*/
input {
color: transparent;
text-shadow: 0 0 0 #fff;
}
/**
* blink
*/
.blink {
animation: blink 500ms steps(1, end) infinite;
}
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 1; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment