Skip to content

Instantly share code, notes, and snippets.

@QETHAN
Created May 5, 2014 03:30
Show Gist options
  • Save QETHAN/11528245 to your computer and use it in GitHub Desktop.
Save QETHAN/11528245 to your computer and use it in GitHub Desktop.
A Pen by Mario Hernandez.
<a class="button" href="#">This is a button</a>
@import "compass/css3";
body {
margin-top: 2em;
}
.button {
display:block;
margin: auto;
text-align: center;
border-radius:4px;
text-decoration: none;
font-family:'Lucida Grande',helvetica;
background: #69c773;
background-color: rgb(105, 199, 115);
-webkit-box-shadow: 0 4px 0 0 #51a65f;
-moz-box-shadow: 0 4px 0 0 #51a65f;
box-shadow: 0 4px 0 0 #51a65f;
font-size: 20px !important;
padding: 15px 20px;
width: 250px;
color: #FFF;
}
.button:hover {
color: #51A65F;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment