Glossy buttons #03 (bad!)

by panique

HTML

<fieldset>
<legend><a>Gloss Orange:</a></legend>
<ul>
    <li class="gloss-orange"><a>Click here </a></li>
    <li class="gloss-orange"><a>Or Here</a></li>
    <li class="gloss-orange"><a href="http://www.google.com">Google</a></li>
    <li class="gloss-orange"><a>Click here!</a></li>
</ul>
</fieldset>

CSS

/*-------------- Gloss Orange ------------*/
 .gloss-orange
 {
  font-family:'Myriad Pro',Arial,Helvetica,sans-serif;
    width:100px;
    height:    30px;
    margin:10px;
    padding:0px;
    display:block;
    font-size:19px;
    font-weight:bold;
    text-align:center;
    border:1px solid #ff9900;
    box-shadow:0px 0px 3px #444;
    -webkit-box-shadow:0px 0px 3px #444;
    -moz-box-shadow: 0px 0px 3px #444;
    /*
        CSS3 gradients for webkit and mozilla browsers,
        fallback color for the rest:
    */
    background-color: #ff9900;
    background-image: -moz-linear-gradient(#ffcc33, #ff9900);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffcc33), to(#ff9900));
        filter: progid:DXImageTransform.Microsoft.gradient(
        enabled='true',
        startColorstr=#ffcc33,
        endColorstr=#ff9900,
        GradientType=0);
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    border-radius:7px;
    text-align:center;
 }
 
 .gloss-orange a
 {
    margin:2px;
     -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    background-color: #ffdd33;
    background-image: -moz-linear-gradient(#fff, #ffcc22);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#ffcc22));
    width:auto;
    height:50%;
    display:block;
    font-family:'Myriad Pro',Arial,Helvetica,sans-serif;
    font-size:19px;
    font-weight:bold;
    text-decoration:none;
    text-shadow:-1px -1px 0px #999;
    color:#fff;
 }
.gloss-orange a:hover
{
color:#000;
}