Created
July 11, 2013 17:06
-
-
Save joetower/5977273 to your computer and use it in GitHub Desktop.
CSS snippets I use frequently.
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
/* 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