Skip to content

Instantly share code, notes, and snippets.

@joetower
Created July 11, 2013 17:06
Show Gist options
  • Select an option

  • Save joetower/5977273 to your computer and use it in GitHub Desktop.

Select an option

Save joetower/5977273 to your computer and use it in GitHub Desktop.

Revisions

  1. joetower created this gist Jul 11, 2013.
    20 changes: 20 additions & 0 deletions The Grangles
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    /* 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;