aboutsummaryrefslogtreecommitdiffstats
path: root/doc/functional/stylesheets/help.scss
diff options
context:
space:
mode:
Diffstat (limited to 'doc/functional/stylesheets/help.scss')
-rw-r--r--doc/functional/stylesheets/help.scss30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/functional/stylesheets/help.scss b/doc/functional/stylesheets/help.scss
index 42a5a2d0c..1923a494e 100644
--- a/doc/functional/stylesheets/help.scss
+++ b/doc/functional/stylesheets/help.scss
@@ -16,10 +16,39 @@
margin: 7px 0 7px 20px;
}
+#workspace ol {
+ list-style: none;
+ margin: 7px 0 7px 20px;
+ padding: 0;
+ counter-reset: num;
+}
+
+#workspace ol li:before {
+ content: counter(num) '. ';
+ counter-increment: num;
+}
+
+#workspace ol ol li:before {
+ content: counters(num, '.') ' ';
+}
+
#workspace em {
font-style: italic;
}
+#workspace strong {
+ font-weight: bold;
+}
+
+#workspace cite {
+ font-style: italic;
+}
+
+#workspace p.attr_data {
+ font-style: italic;
+ text-decoration: underline;
+}
+
#workspace table {
width: 100%;
}
@@ -30,6 +59,7 @@
}
#workspace dt {
+ font-style:italic;
margin: 5px 0;
}