aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.css
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-01-19 13:35:02 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-01-19 13:35:02 +0000
commit3d438a3600536da5375d7629896667530c476aaf (patch)
treeb404ea9b3f4869e0e195cabb2dc554b9d42ee3ba /mandoc.css
parente73d0cb63df953bf695636bd8906deb316a6d718 (diff)
downloadmandoc-3d438a3600536da5375d7629896667530c476aaf.tar.gz
mandoc-3d438a3600536da5375d7629896667530c476aaf.tar.zst
mandoc-3d438a3600536da5375d7629896667530c476aaf.zip
Start cleanup: trim useless HTML comments, <div> elements,
and CSS rules on the <html> and <body> levels.
Diffstat (limited to 'mandoc.css')
-rw-r--r--mandoc.css43
1 files changed, 20 insertions, 23 deletions
diff --git a/mandoc.css b/mandoc.css
index 90085061..5c4e930a 100644
--- a/mandoc.css
+++ b/mandoc.css
@@ -1,29 +1,26 @@
-/* $Id: mandoc.css,v 1.2 2016/04/13 10:19:23 schwarze Exp $ */
-
+/* $Id: mandoc.css,v 1.3 2017/01/19 13:35:02 schwarze Exp $ */
/*
- * This is an example style-sheet provided for mandoc(1) and the -Thtml
- * or -Txhtml output mode.
- *
- * It mimics the appearance of the traditional cvsweb output.
- *
- * See mdoc(7) and man(7) for macro explanations.
+ * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
*/
-html { max-width: 880px; margin-left: 1em; }
-body { font-size: smaller; font-family: Helvetica,Arial,sans-serif; }
-body > div { padding-left: 2em;
- padding-top: 1em; }
-body > div.mandoc,
-body > div#mancgi { padding-left: 0em;
- padding-top: 0em; }
-body > div.results { font-size: smaller; }
-#mancgi fieldset { text-align: center;
- border: thin solid silver;
- border-radius: 1em;
- font-size: small; }
-#mancgi input[name=expr] { width: 25%; }
-.results td.title { vertical-align: top;
- padding-right: 1em; }
+/* Global defaults. */
+
+html { max-width: 100ex; }
+body { font-family: Helvetica,Arial,sans-serif; }
+
+/* Search form and search results. */
+
+fieldset { border: thin solid silver;
+ border-radius: 1em;
+ text-align: center; }
+input[name=expr] {
+ width: 25%; }
+
+div.results { margin-top: 1em;
+ margin-left: 2em;
+ font-size: smaller; }
+
+
h1 { margin-bottom: 1ex; font-size: 110% }
div.section > h1 { margin-left: -4ex; } /* Section header (Sh, SH). */
h2 { margin-bottom: 1ex; font-size: 105%; margin-left: -2ex; } /* Sub-section header (Ss, SS). */