Button

by Annett

HTML

<button type="button" name="" value="" class="css3button">submit</button>

CSS

button.css3button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #050505;
    height: 75px;
    width: 220px;
    padding: 22px 20px;
    background: rgb(90,170,197); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(90,170,197,1) 0%, rgba(90,170,197,1) 50%, rgba(46,130,158,1) 51%, rgba(90,170,197,1) 51%, rgba(90,170,197,1) 52%, rgba(46,130,158,1) 52%, rgba(46,130,158,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(90,170,197,1)), color-stop(50%,rgba(90,170,197,1)), color-stop(51%,rgba(46,130,158,1)), color-stop(51%,rgba(90,170,197,1)), color-stop(52%,rgba(90,170,197,1)), color-stop(52%,rgba(46,130,158,1)), color-stop(100%,rgba(46,130,158,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(90,170,197,1) 0%,rgba(90,170,197,1) 50%,rgba(46,130,158,1) 51%,rgba(90,170,197,1) 51%,rgba(90,170,197,1) 52%,rgba(46,130,158,1) 52%,rgba(46,130,158,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(90,170,197,1) 0%,rgba(90,170,197,1) 50%,rgba(46,130,158,1) 51%,rgba(90,170,197,1) 51%,rgba(90,170,197,1) 52%,rgba(46,130,158,1) 52%,rgba(46,130,158,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(90,170,197,1) 0%,rgba(90,170,197,1) 50%,rgba(46,130,158,1) 51%,rgba(90,170,197,1) 51%,rgba(90,170,197,1) 52%,rgba(46,130,158,1) 52%,rgba(46,130,158,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(90,170,197,1) 0%,rgba(90,170,197,1) 50%,rgba(46,130,158,1) 51%,rgba(90,170,197,1) 51%,rgba(90,170,197,1) 52%,rgba(46,130,158,1) 52%,rgba(46,130,158,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5aaac5', endColorstr='#2e829e',GradientType=0 ); /* IE6-9 */
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #3184a0;

    -moz-box-shadow:
        0px 1px 3px rgba(000,000,000,0.5),
      ...