Skip to content

Instantly share code, notes, and snippets.

@zhoufenfens
Created November 18, 2013 03:28
Show Gist options
  • Save zhoufenfens/7522001 to your computer and use it in GitHub Desktop.
Save zhoufenfens/7522001 to your computer and use it in GitHub Desktop.
box-shadow input
input {
transition: all 0.30s ease-in-out;
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
border: #35a5e5 1px solid;
border-radius: 4px;
outline: none;
}
input:focus {
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
-webkit-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
-moz-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment