CSS CODE
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
color: #27408b;
padding: 15px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#27408b),
color-stop(0.50, #ebebeb),
color-stop(0.40, #ffffff),
color-stop(0.60, #ffffff),
to(#27408b));
background: linear-gradient(
top,
#27408b 0%,
#ebebeb 50%,
#ffffff 40%,
#ffffff 60%,
#27408b);
border-radius: 50px;
border: 4px solid #ffd900;
box-shadow:
0px 1px 3px rgba(255,255,255,0.5),
inset 0px 0px 3px rgba(255,255,255,1);
text-shadow:
0px -1px 0px rgba(039,064,139,1),
0px 1px 0px rgba(114,129,173,1);
}