aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_xmls_css.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-05-01 18:46:11 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commita9a46fca7397aaa357bfdc2b98e181617bb6887b (patch)
tree4a3c214b8139204cdb4cce723f14da7bd34a939f /org/output_xmls_css.org
parentxml family, special characters, deal with once (diff)
xmls work particularly with epub output
Diffstat (limited to 'org/output_xmls_css.org')
-rw-r--r--org/output_xmls_css.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/org/output_xmls_css.org b/org/output_xmls_css.org
index 83b6559..5b34915 100644
--- a/org/output_xmls_css.org
+++ b/org/output_xmls_css.org
@@ -25,7 +25,7 @@ template SiSUcss() {
string css_shared="
<<css_shared>>
";
- struct _CSS {
+ struct _css {
auto html_css() {
string _css = "/* SiSU css html stylesheet */\n" ~ css_shared;
return _css;
@@ -35,7 +35,7 @@ template SiSUcss() {
return _css;
}
}
- return _CSS();
+ return _css();
}
}
#+END_SRC
@@ -888,4 +888,8 @@ template SiSUcss() {
color: #000000;
background-color: #f9f9aa;
}
+ /* in toc no list numbering */
+ nav#toc ol {
+ list-style-type: none;
+ }
#+END_SRC