CANDOER wrote:
Quote:
I have a web site dedicated to the Alumni of my high school in Penna. I
have individual pages for the classes of 1947 through 1980. Each page is
color coded to the individual class colors. The background is one color and
the text another color. |
Watch out for Web-viewing calamities like red-and-black or
ivory-and-rose. You might have to make some exceptions for certain years
(or use the class color for a double border around everything or a
right-edge trim, while the texts are always black on white).
Cat,
It's kind of funny posting to alt.html.critique when there's nothing for
us to critique at the URL you gave. Anyway, you're asking a CSS
question, so maybe comp.infosystems.
www.authoring.stylesheets would have
been a better NG.
But here's one (beginning of an) idea:
On each of your class pages, add a CSS class to denote the year, as in
<body class="ending1947"> or <body class="grad1962">.
Then, in your one single CSS file (which each of your individual class
..htm files link to), you've got something like this:
body { margin:0; padding:0; font:100% Arial, sans-serif; }
..grad1947 { color:blue; background-color:yellow; }
..grad1948 { color:#FFCC33; background-color:black; }
..grad1949 { color:#800000; background-color:#778899; }
..grad1950 { color:#FFD700; background-color:#000080; }
and so on. Test, tweak, refine, etc.
HTH.
--
John