summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-12-13 12:08:31 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-12-13 12:08:31 +0200
commit656d41c935ae63efa80f638c25901dda9a26712c (patch)
tree01f5b68f7bf9b389cbc3465805696a887a9973bd /docs
parentb67e1212850f799957e9cd1b25f2a7ab6fe860a8 (diff)
downloadfpGUI-656d41c935ae63efa80f638c25901dda9a26712c.tar.xz
docs: updated CSS file to remove double spacing.
When HTML output is generated all the help text is double spaced. This new CSS file makes in single spaced again.
Diffstat (limited to 'docs')
-rw-r--r--docs/html/fpdoc.css43
1 files changed, 37 insertions, 6 deletions
diff --git a/docs/html/fpdoc.css b/docs/html/fpdoc.css
index 5314232d..723e6fed 100644
--- a/docs/html/fpdoc.css
+++ b/docs/html/fpdoc.css
@@ -1,9 +1,4 @@
/*
- $Id$
-
- Default style sheet for FPDoc reference documentation
- by Sebastian Guenther, sg@freepascal.org
-
Feel free to use this file as a template for your own style sheets.
*/
@@ -53,6 +48,11 @@ h3, td.h3 {
font-size: 12pt
}
+/* source fragments */
+span.code {
+ white-space: nowrap
+}
+
/* symbols in source fragments */
span.sym {
color: darkred
@@ -95,7 +95,6 @@ span.asm {
color: green
}
-
td.pre {
white-space: pre
}
@@ -127,3 +126,35 @@ span.bartitle {
font-style: italic;
color: darkblue
}
+
+span.footer {
+ font-style: italic;
+ color: darkblue
+}
+
+/* definition list */
+dl {
+ border: 3px double #ccc;
+ padding: 0.5em;
+}
+
+/* definition list: term */
+dt {
+ float: left;
+ clear: left;
+ width: auto; /* normally browsers default width of largest item */
+ padding-right: 20px;
+ font-weight: bold;
+ color: darkgreen;
+}
+
+/* definition list: description */
+dd {
+ margin: 0 0 0 110px;
+ padding: 0 0 0.5em 0;
+}
+
+/* for browsers in standards compliance mode */
+td p {
+ margin: 0;
+}