Created
November 18, 2013 03:28
-
-
Save zhoufenfens/7522001 to your computer and use it in GitHub Desktop.
box-shadow input
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
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