Fran button

by Umar

HTML

<a class="new-button">New</a>

CSS

.new-button {
    border-radius: 7px;
    box-shadow: 0 0 5px #EEC77B;
    border: 2px solid #CCA559;
    font-family: Helvetica;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f0f0f0));
    font-size: 30px;
    padding: 4px 17px;
    display: inline-block;
    margin: 30px;
    text-shadow: 0 1px 0 #FFF;
}

.new-button:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#FFFFFF));
}