/* A non-graphic rectangular button */
.button
{
float: left;
text-align: center;
width: 110px;
font: bold 0.8em verdana, geneva, helvetica, arial, sans-serif;
color: black;
border: 2px solid white;
margin: 0 0 0 4px;
}
.button a
{
display: block;
color: inherit;
background: #e7f1f8;
padding: 4px 0 4px 0;
}
.button a:hover
{
background: #fff;
color: #003;
}
|