Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created March 12, 2014 14:18
Show Gist options
  • Save pablolobos/9507867 to your computer and use it in GitHub Desktop.
Save pablolobos/9507867 to your computer and use it in GitHub Desktop.
css_input-focus-border.css
input[type=text], textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
}
input[type=text]:focus, textarea:focus {
box-shadow: none;
border: 1px solid $celeste-nuevo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment