/* Stylesheet for COCANWIKI.
- * $Id: standard.css,v 1.18 2004/10/21 18:02:48 rich Exp $
+ * $Id: standard.css,v 1.19 2004/10/21 20:39:48 rich Exp $
*/
/* Based on the basic stylesheet. */
font-size: 100%;
}
+/* Ordinary text. */
+div#content_div {
+ margin-left: 3em;
+ width: 30em;
+ min-height: 22em;
+}
+
/* Outdent headers in the content div. */
div#content_div h2, div#content_div h3, div#content_div h4 {
margin-left: -2em;
}
-/* IE is a piece of crap. */
-* html h2, * html h3, * html h4 {
+/* ... except on IE which can't handle it. */
+* html div#content_div h2, * html div#content_div h3, * html div#content_div h4 {
margin-left: 0px;
}
-/* Ordinary text. */
-div#content_div {
- margin-left: 3em;
- width: 30em;
- min-height: 22em;
-}
-
-div#content_div p {
- text-indent: 1em;
+/* Lists. */
+div#content_div ul {
+ margin-left: 0px;
+ padding-left: 0px;
}
-/* Don't indent the first paragraph. */
-div#content_div p.first_para {
- text-indent: 0px;
+/* ... except on IE, piece of crap. */
+* html div#content_div ul {
+ margin-left: 1em;
+ padding-left: 1em;
}
/* Make <code> sections slightly larger in Gecko browsers. */