aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/output/xmls_css.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2018-10-03 11:16:23 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2019-04-10 15:14:15 -0400
commita7321dc8c96ff0006eb79a7181db4ab416e916f3 (patch)
treea51168fcb61018db2429d9bbe024ab1624f0f764 /src/doc_reform/output/xmls_css.d
parent0.1.0 renamed doc-reform, doc_reform (& rad) (diff)
naming DocReform from SiSU
Diffstat (limited to 'src/doc_reform/output/xmls_css.d')
-rw-r--r--src/doc_reform/output/xmls_css.d10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc_reform/output/xmls_css.d b/src/doc_reform/output/xmls_css.d
index f3c0545..01c114d 100644
--- a/src/doc_reform/output/xmls_css.d
+++ b/src/doc_reform/output/xmls_css.d
@@ -2,8 +2,8 @@
default css settings
+/
module doc_reform.output.xmls_css;
-template SiSUcss() {
- auto SiSUcss() {
+template DocReformCss() {
+ auto DocReformCss() {
string _css_html_seg="
*{
padding: 0px;
@@ -2854,15 +2854,15 @@ template SiSUcss() {
";
struct _css {
auto html_seg_css() {
- string _css = "/* SiSU css html seg stylesheet */\n" ~ _css_html_seg;
+ string _css = "/* DocReform css html seg stylesheet */\n" ~ _css_html_seg;
return _css;
}
auto html_scroll_css() {
- string _css = "/* SiSU css html scroll stylesheet */\n" ~ _css_html_scroll;
+ string _css = "/* DocReform css html scroll stylesheet */\n" ~ _css_html_scroll;
return _css;
}
auto epub_css() {
- string _css = "/* SiSU css epub stylesheet */\n" ~ _css_epub;
+ string _css = "/* DocReform css epub stylesheet */\n" ~ _css_epub;
return _css;
}
}