Bugs in blue.css
Bugs in blue.css
Hello,
I think there are some bugs in blue.css:
background: #COCOCO;
should be...
background: #C0C0C0;
there are a number of instances of:
cursor: pointer;
cursor: hand;
firefox 1.5 does not like this... I have removed the 'hand' declaration
font declaration has no px-size and has an extra space
.superScript{
font: verdana,arial,Helvetica, sans-serif;
color: #FF0000;
vertical-align: 35%;
}
... should be...
.superScript{
font: 5px verdana,arial,Helvetica,sans-serif;
color: #FF0000;
vertical-align: 35%;
}