CSS CODE
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #ffffff;
padding: 10px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#69d460),
color-stop(0.50, #48a336),
color-stop(0.50, #ffffff),
color-stop(0.75, #ffffff),
to(#92f054));
background: linear-gradient(
top,
#69d460 0%,
#48a336 50%,
#ffffff 50%,
#ffffff 75%,
#92f054);
border-radius: 30px;
border: 2px solid #291c29;
box-shadow:
0px 3px 11px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(028,097,042,0.8);
text-shadow:
0px -1px 0px rgba(000,000,000,0.2),
0px 1px 0px rgba(252,252,252,0.3);
}