By Iman Akilah Links
.button {
display: inline-block;
text-align: center;
vertical-align: middle;
padding: 12px 24px;
border: 1px solid #cd958f;
border-radius: 100px;
background: #ecaba4;
background: -webkit-gradient(linear, left top, left bottom, from(#ecaba4), to(#cd958f));
background: -moz-linear-gradient(top, #ecaba4, #cd958f);
background: linear-gradient(to bottom, #ecaba4, #cd958f);
font: normal normal bold 20px arial;
color: #ffffff;
text-decoration: none;
}
.button:hover,
.button:focus {
border: 1px solid #ecaba4;
background: #ffcdc5;
background: -webkit-gradient(linear, left top, left bottom, from(#ffcdc5), to(#f6b3ac));
background: -moz-linear-gradient(top, #ffcdc5, #f6b3ac);
background: linear-gradient(to bottom, #ffcdc5, #f6b3ac);
color: #ffffff;
text-decoration: none;
}
.button:active {
background: #906864;
background: -webkit-gradient(linear, left top, left bottom, from(#906864), to(#cd958f));
background: -moz-linear-gradient(top, #906864, #cd958f);
background: linear-gradient(to bottom, #906864, #cd958f);
}