button code
-Facebook -Forrst
by individual11
HTML
<div>
<a href="#" class="fbbutton">Facebook</a>
</div>
<div>
<a href="#" class="forrst">Forrst</a>
<a href="#" class="forrst active">Forrst Active</a>
</div>
CSS
/*Facebook*/
.fbbutton {
text-decoration: none;
border-top: 1px solid #2A457F;
border-left: 1px solid #2A457F;
border-bottom: 1px solid #1A356E;
border-right: 1px solid #2A457F;
font-family: 'lucida grande';
background: #637BAD;
color: white;
display: inline-block;
font-size: 11px;
font-weight: bold;
padding: 4px 6px;
}
.fbbutton:active {
padding-top:5px;
padding-bottom:3px;
padding-left:7px;
padding-right:5px;
}
/*FORRST*/
.forrst{
-moz-border-radius: 15px 15px 15px 15px;
-moz-box-shadow: 1px 1px 0 #CCCBC7 inset;
background-color: #AAA69A;
border: 1px solid #878777;
color: #FFFFFF;
font: 13px/18px Helvetica,Arial,Verdana,sans-serif;
font-weight: bold;
line-height: 1;
margin-left: 3px;
padding: 5px 13px;
text-decoration: none;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
text-transform: uppercase;
}
.forrst:hover {
-moz-box-shadow: 1px 1px 0 #FBF9F2 inset;
background-color: #C8C5BE;
border: 1px solid #878777;
color: #706C5A;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}
.forrst.active {
-moz-box-shadow: 1px 1px 0 #6EB267 inset;
background-color: #53854E;
border: 1px solid #4F7D4A;
}
.active:hover {
color: #FFFFFF;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}
div{
margin:10px;
}