Skip to content

Instantly share code, notes, and snippets.

@Manoz
Created June 24, 2013 20:37
Show Gist options
  • Save Manoz/5853411 to your computer and use it in GitHub Desktop.
Save Manoz/5853411 to your computer and use it in GitHub Desktop.
A CodePen by Manoz.
<button>Normal button</button>
body {
background: #ede9e9;
}
button {
padding: 10px 30px;
border: 1px solid #d8d8d8;
border-radius: 3px;
text-transform: uppercase;
font-family: Helvetica,Arial,sans-serif;
font-size: 16px;
color: #777777;
background: #fff;
-webkit-box-shadow: 0 1px 0 #d8d8d8;
box-shadow: 0 1px 0 #d8d8d8;
}
button:hover {
border: 1px solid #b9b9b9;
-webkit-box-shadow: 0 1px 0 #b9b9b9;
box-shadow: 0 1px 0 #b9b9b9;
}
button:active {
border: 1px solid #d9d9d9;
background: #f2eeee;
box-shadow: inset 0 0 6px rgba(0,0,0,.15);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment