Created
October 26, 2012 08:34
-
-
Save groenewege/3957645 to your computer and use it in GitHub Desktop.
css - rounded 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
.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