From d04a14c6d271e429d80fed82ea5120e0ea04c0ec Mon Sep 17 00:00:00 2001 From: rich Date: Fri, 17 Sep 2004 12:34:33 +0000 Subject: [PATCH] Standard CSS for different types of common tables. --- html/_css/standard.css | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/html/_css/standard.css b/html/_css/standard.css index efcdfbd..e3efb00 100644 --- a/html/_css/standard.css +++ b/html/_css/standard.css @@ -1,5 +1,5 @@ /* Stylesheet for COCANWIKI. - * $Id: standard.css,v 1.3 2004/09/08 17:07:24 rich Exp $ + * $Id: standard.css,v 1.4 2004/09/17 12:34:33 rich Exp $ */ body { @@ -194,3 +194,45 @@ div#old_version { margin-left: 10%; clear: both; } + +/* Tables. */ +table.top_table { + border-collapse: collapse; + border: 2px solid #000; +} + +table.top_table th { + border: 1px solid #000; + background-color: #eee; + vertical-align: top; +} + +table.top_table td { + border: 1px solid #eee; + vertical-align: top; +} + +table.top_table td.number { + text-align: right; +} + +table.left_table { + border-collapse: collapse; + border: 2px solid #000; +} + +table.left_table th { + text-align: right; + border: 1px solid #000; + background-color: #eee; + vertical-align: top; +} + +table.left_table td { + border: 1px solid #eee; + vertical-align: top; +} + +table.left_table td.number { + text-align: right; +} -- 1.8.3.1