Skip to content

Instantly share code, notes, and snippets.

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