Yearbook Angels Buttons

Pure CSS yearbook angels button classes

by James Doyle

HTML

<div class="button">Donate Now</div>
<div class="button2">submit</div>

CSS

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
div { margin: 20px }
.button {
    cursor: pointer;
    height: 15px;
    width: 350px;
    padding: 10px 0 40px;
    text-align: center;
    font-size: 2em;
    font-family: 'Open Sans';
    font-weight: 300;
    color: #fff;
    text-shadow: 0px 1px rgba(0,0,0,0.3);
    border: 1px solid #118699;
    border-radius: 20px;
    box-shadow: inset 0px 2px 5px rgba(255,255,255,0.4), 0px 2px 15px rgba(0,0,0,0.4);
    background: #10b2cd;
    background: -moz-linear-gradient(top, #10b2cd 0%, #0d8ea3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#10b2cd), color-stop(100%,#0d8ea3));
    background: -webkit-linear-gradient(top, #10b2cd 0%,#0d8ea3 100%);
    background: -o-linear-gradient(top, #10b2cd 0%,#0d8ea3 100%);
    background: -ms-linear-gradient(top, #10b2cd 0%,#0d8ea3 100%);
    background: linear-gradient(top, #10b2cd 0%,#0d8ea3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#10b2cd', endColorstr='#0d8ea3',GradientType=0 );
}
.button:active {
    text-shadow: 0px -1px rgba(0,0,0,0.3);
    padding: 12px 0 38px;
    box-shadow: inset 0px 2px 5px rgba(0,0,0,0.4), 0px 2px 15px rgba(0,0,0,0.4);
    background: #0d8ea3;
    background: -moz-linear-gradient(top, #0d8ea3 0%, #10b2cd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0d8ea3), color-stop(100%,#10b2cd));
    background: -webkit-linear-gradient(top, #0d8ea3 0%,#10b2cd 100%);
    background: -o-linear-gradient(top, #0d8ea3 0%,#10b2cd 100%);
    background: -ms-linear-gradient(top, #0d8ea3 0%,#10b2cd 100%);
    background: linear-gradient(top, #0d8ea3 0%,#10b2cd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d8ea3', endColorstr='#10b2cd',GradientType=0 );
}
.button2 {
    cursor: pointer;
    height: 15px;
    width: 350px;
    padding: 10px 0 40px;
    text-align: center;
    font-size: 2em;
   ...