CSS CODE
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
color: #007bff;
padding: 10px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#4be373),
color-stop(0.50, #ebebeb),
color-stop(0.50, #ebdd49),
color-stop(0.75, #ffffff),
to(#6935fa));
background: linear-gradient(
top,
#4be373 0%,
#ebebeb 50%,
#ebdd49 50%,
#ffffff 75%,
#6935fa);
border-radius: 10px;
border: 3px solid #007bff;
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 3px 3px 16px rgba(255,255,255,1);
text-shadow:
0px -1px 0px rgba(000,000,000,0.6),
0px 1px 0px rgba(255,255,255,1);
}