From b804c2bbf4f5e4458e71c9cae7db57e538237799 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 16 Jan 2006 10:05:35 +0000 Subject: [PATCH] Text is now done --- printer.css.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/printer.css.php b/printer.css.php index a891244..de8f9eb 100755 --- a/printer.css.php +++ b/printer.css.php @@ -156,13 +156,15 @@ td.thead, .thead td, .alt3 /* Font settings for all non-styled elements */ body, p, td, tr, ol, ul { - font: 12px verdana, geneva, arial, helvetica, sans-serif; + font-family: verdana, geneva, arial, helvetica, sans-serif; + font-size: 12px; } /* Small text (used in copyright) */ .smallfont, .copyright, dfn { - font: 11px tahoma, verdana, geneva, arial, helvetica, sans-serif; + font-family: tahoma, verdana, geneva, arial, helvetica, sans-serif; + font-size: 11px; } /* Description text */ @@ -174,21 +176,20 @@ dfn /* Table headings */ .tcat, .thead, .tfoot { - font: 12px tahoma, verdana, geneva, arial, helvetica, sans-serif; + font-family: tahoma, verdana, geneva, arial, helvetica, sans-serif; + font-size: 12px; } /* Normal links */ a:link, a:visited, a:active { color: rgb(41, 63, 91); - background: none; } /* Hover links */ -a:hover, .tcat a:hover, .thead a:hover, .tfoot a:hover +a:hover, .tcat a:hover, .thead a:hover, .tfoot a:hover, .alt3 a:hover { - color: #D6E1EC; - background: rgb(0, 0, 0); + color: rgb(158, 0, 0); } .copyright a:hover, .copyright a:link, .copyright a:visited, .copyright a:active @@ -199,7 +200,8 @@ a:hover, .tcat a:hover, .thead a:hover, .tfoot a:hover /* Mono-space */ .code { - font: 9pt 'courier new', courier, monospace; + font-family: 'courier new', courier, monospace; + font-size: 9pt; } /* ################################################################### */ -- 2.22.5