Skip to content

Instantly share code, notes, and snippets.

@joetower
Created July 11, 2013 17:06
Show Gist options
  • Save joetower/5977273 to your computer and use it in GitHub Desktop.
Save joetower/5977273 to your computer and use it in GitHub Desktop.
CSS snippets I use frequently.
/* REMOVE WEBKIT CSS NONSENSE */
input,
textarea,
input:focus,
textarea:focus {
-webkit-appearance:none;
-webkit-box-sizing:border-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
*/ Transitions */
-webkit-transition: all 0.12s ease-in-out;
-moz-transition: all 0.12s ease-in-out;
transition: all 0.12s ease-in-out;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment