Skip to content

Instantly share code, notes, and snippets.

@Ricardo-Diaz
Created October 23, 2012 19:02
Show Gist options
  • Save Ricardo-Diaz/3940862 to your computer and use it in GitHub Desktop.
Save Ricardo-Diaz/3940862 to your computer and use it in GitHub Desktop.
CSS: Mac Input Search Box
//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