Created
October 23, 2012 19:02
-
-
Save Ricardo-Diaz/3940862 to your computer and use it in GitHub Desktop.
CSS: Mac Input Search Box
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
//Mac Input | |
.mac { | |
display: block; | |
border: none; | |
border-radius: 20px; | |
padding: 5px 8px; | |
color: #333; | |
box-shadow: | |
inset 0 2px 0 rgba(0,0,0,.2), | |
0 0 4px rgba(0,0,0,0.1); | |
} | |
.mac:focus { | |
outline: none; | |
box-shadow: | |
inset 0 2px 0 rgba(0,0,0,.2), | |
0 0 4px rgba(0,0,0,0.1), | |
0 0 5px 1px #51CBEE; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment