Contact form now identified by name, not ID field.
[cocanwiki.git] / html / _css / standard.css
index 83ba185..2327c0b 100644 (file)
@@ -1,5 +1,5 @@
-/* Stylesheet for COCANWIKI, derived from EWM.
- * $Id: standard.css,v 1.2 2004/09/08 14:01:17 rich Exp $
+/* Stylesheet for COCANWIKI.
+ * $Id: standard.css,v 1.5 2004/09/24 10:44:55 rich Exp $
  */
 
 body {
@@ -194,3 +194,51 @@ 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;
+}
+
+/* Highlighting search terms. */
+span.search_term {
+  background-color: #ff0;
+  border: 1px solid #eeb;
+}
\ No newline at end of file