/** * Style sheet for documents created by Siteweaver. Used to handle * a few of the special tags (or, more precisely, tag attributes) * used in documents generated by Siteweaver. * * File: * siteweaver.css1 * Author: * Samuel A. Rebelsky * Version: * 1.0 of 27 March 1999 * History: * Created 27 March 1999. * Previously, these styles were included directly in the documents * that Siteweaver produces. I've found that that decision led to * slightly less readable and slightly more cumbersome documents. * It also makes global updates harder. * In creating this standalone style sheet, I've added some * comments about the various styles. */ /** * Program code is indented and put on a grey background. */ DIV.code { background: rgb(210,210,210); border: rgb(210,210,210); margin-left: 1.2em; margin-right: 1.2em; } /** * The site name (at the top of the page). */ DIV.site { font-size: large; text-align: center; text-style: bold; color: red; } P.site { font-size: large; color: yellow; } /** * A simple way to center text without using the deprecated *
tag. */ DIV.center { text-align: center; } /** * The links that appear on the top and bottom of pages. */ P.links { text-align: center; font-size: small; } /** * A footnote that appears at the bottom of the page. */ P.footnote { font-size: small; } /** * And, just to be careful, the numbers for those footnotes. */ SUP.footnote { font-size: small; }