aboutsummaryrefslogtreecommitdiff
path: root/html/Ocean.std-theme
diff options
context:
space:
mode:
authorMark Lentczner <markl@glyphic.com>2010-08-26 23:44:13 +0000
committerMark Lentczner <markl@glyphic.com>2010-08-26 23:44:13 +0000
commite7c9151b10168d3da6485fbce2dab1e378daa5ad (patch)
tree959d5efb4437f398671da9bcde0273646d3d44e7 /html/Ocean.std-theme
parentd830dca2ed25bb71b7c745feef715dab7de2c007 (diff)
fixed CSS for ordered lists and def lists in doc blocks
Diffstat (limited to 'html/Ocean.std-theme')
-rw-r--r--html/Ocean.std-theme/ocean.css28
1 files changed, 23 insertions, 5 deletions
diff --git a/html/Ocean.std-theme/ocean.css b/html/Ocean.std-theme/ocean.css
index b3fc16b7..52292eaf 100644
--- a/html/Ocean.std-theme/ocean.css
+++ b/html/Ocean.std-theme/ocean.css
@@ -18,7 +18,21 @@ p {
margin: 0.8em 0;
}
-ul { margin-left: 2em; }
+ul, ol {
+ margin: 0.8em 0 0.8em 2em;
+}
+
+dl {
+ margin: 0.8em 0;
+}
+
+dt {
+ margin-top: 0.8em;
+ font-weight: bold;
+}
+dd {
+ margin-left: 2em;
+}
a { text-decoration: none; }
a[href]:link { color: rgb(196,69,29); }
@@ -381,14 +395,18 @@ div#style-menu-holder {
margin-top: 0.8em;
}
-#interface dt {
+.subs dl {
+ margin: 0;
+}
+
+.subs dt {
float: left;
clear: left;
display: block;
margin: 1px 0;
}
-#interface dd {
+.subs dd {
float: right;
width: 90%;
display: block;
@@ -396,11 +414,11 @@ div#style-menu-holder {
margin-bottom: 0.5em;
}
-#interface dd.empty {
+.subs dd.empty {
display: none;
}
-#interface dd p {
+.subs dd p {
margin: 0;
}