Skip to content

Instantly share code, notes, and snippets.

@zsimo
Created March 7, 2014 09:30
Show Gist options
  • Save zsimo/9408414 to your computer and use it in GitHub Desktop.
Save zsimo/9408414 to your computer and use it in GitHub Desktop.
A Pen by Simone.
<div class="button">design button</div>
body {padding: 5%}
.button {
text-align: center;
font-family: Helvetica neue;
font-weight: bold;
width: 130px;
background-color: black;
color: white;
padding: 3%;
}
.button:hover {
background-color: white;
border: 1px solid black;
color: black;
cursor: pointer;
}
.button:active {
color: white;
background-color: red;
border: 2px solid black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment