summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+}