Button Maker
.button {
border-top: 2px solid #06d1f8;
background: #65a9d7;
background: -webkit-gradient(linear, left top, left bottom, from(#6e779d), to(#65a9d7));
background: -webkit-linear-gradient(top, #6e779d, #65a9d7);
padding: 5px 10px;
border-radius: 8px;
color: #fff;
font-size: 14px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
}
.button:hover {
border-top-color: #28597a;
background: #28597a;
color: #ccc;
}
.button:active {
border-top-color: #1b435e;
background: #1b435e;
}