algorithm

Miscellaneous Forums/General Discussion/algorithm

the css for the algorithm skin keeps throwing up errors (in the background) in firefox for me, so here's a (hopefully corrected version:
body{
	font: small arial;
	background: #666666 url("background.png");
	padding: 0px 16px;
	color: #ffffff;
}
img{
	border: 0px;
}
a{
	color: #ffff00;
	text-decoration: none;
}
a.tab{
	color: #ffffff;
}
a.menuitem{
}
a:hover{
	text-decoration: underline;
}
a.tab:hover{
	color: #ccffff;
}
a.menuitem:hover{
}
td{
	color: #ffffff;
	font: small arial;
}
h1{
	color: #ffffff;
	font: bold small arial;
}
h3{
	color: #ffffff;
	font: small arial;
}
font.tiny{
	color: #ffffff;
	font: x-small arial;
}

td.tab{
	font-weight: bold;
	text-align: center;
	height:18 px;
	background: url("tab.png");
}
td.tableft{
	width:10px;
	background: url("tableft.png");
}
td.tabright{
	width:10px;
	background: url("tabright.png");
}

td.seltableft{
	width:10px;
	background: url("seltableft.png");
}
td.seltabright{
	width:10px;
	background: url("seltabright.png");
}

td.menubar{	
}
td.menubarleft{
}
td.menubarright{
}

td.menuitem{
}
td.menuitemleft{
}
td.menuitemright{
	width: 16px;	
}

td.head{
	height: 18px;
	background: url(head.png);
	color: #ffffff;
	font-weight: bold;
}
td.headleft{
	width: 10px;
	background: url("headleft.png");
}
td.headright{
	width: 10px;
	background: url("headright.png");
}

td.cell{
	color: #ffffff;
	padding: 4px;
	background: #373737;
	border-left: solid 1px #666666;
	border-top: solid 1px #666666;
}
div.main{
	background: #666666;
	padding: 16px;	
	border: solid 1px #999999;
}
td.posthead{
	padding-left: 4px;
	padding-right: 4px;
}
td.posttext{
	padding: 4px;
	background: #373737;
	border: solid 1px #999999;
}
pre.code{
	font: small courier;
	color: #00ff00;
	background: #000000;
}
div.quote{
	font-style: italic;
	color: #cccccc;
	background: #444444;
}
textarea.codebox{
	overflow:auto;
	font: small courier;
	color: #00ff00;
	background: #000000;
}


And the changes:
a.tab:hover <!-- Should have {
	color: #ccffff;
}




td.tab{
	font: bold; <!-- should be font-weight:
	text-align: center;
	height:18 px;
	background: url("tab.png");
}


td.tableft{
	width:10 px; <!-- should be 10px (can't have the space)
	background: url("tableft.png");
}


td.tabright{
	width:10 px; <!-- remove space
	background: url("tabright.png");
}



td.seltab{
	text-align: center;
	font: bold;  <!-- should be font-weight:
	height:18 px;
	background: url("seltab.png");
}


td.seltableft{
	width:10 px; <!-- remove space
	background: url("seltableft.png");
}


td.seltabright{
	width:10 px; <!-- remove space
	background: url("seltabright.png");
}


td.head{
	height: 18px;
	background: url(head.png);
	color: #ffffff;
	font: bold; <!-- font-weight:
}


div.quote{
	font: italic; <!-- should be font-style:
	color: #cccccc;
	background: #444444;
}


The what now?


*bump* Did the mod's see this?