diff options
Diffstat (limited to 'org')
| -rw-r--r-- | org/output_xmls_css.org | 40 | 
1 files changed, 24 insertions, 16 deletions
diff --git a/org/output_xmls_css.org b/org/output_xmls_css.org index da374cf..15e8bc7 100644 --- a/org/output_xmls_css.org +++ b/org/output_xmls_css.org @@ -385,7 +385,7 @@ template DocReformCss() {  #+name: css_light_shared  #+BEGIN_SRC css -  p.spaced { white-space:    pre; } +  p.spaced { white-space     : pre; }    p.block {      white-space              : pre;    } @@ -513,7 +513,7 @@ template DocReformCss() {  #+name: css_light_shared  #+BEGIN_SRC css -  note { white-space: pre; } +  note { white-space         : pre; }    label.ocn {      width                    : 2%%;      float                    : right; @@ -557,7 +557,7 @@ template DocReformCss() {      font-size                : 80%%;    }    p.right,th.right,td.right { -    text-align:              right; +    text-align               : right;    }    ul, li {      list-style-type          : none; @@ -573,10 +573,9 @@ template DocReformCss() {      margin-bottom            : 3px;    }    li { -    background:              url(../image_sys/bullet_09.png) no-repeat 0px 6px; -  } -  ul { +    background               : url(../image_sys/bullet_09.png) no-repeat 0px 6px;    } +  ul { }  #+END_SRC  ***** headings @@ -602,7 +601,9 @@ template DocReformCss() {    h5 { font-size             : 100%%; }    h6 { font-size             : 100%%; }    h7 { font-size             : 100%%; } -  h0, h1, h2, h3, h4, h5, h6, h7 { text-shadow: .2em .2em .3em #808080; } +  h0, h1, h2, h3, h4, h5, h6, h7 { +    text-shadow              : .2em .2em .3em #808080; +  }    h1.i { margin-left         : 2em; }    h2.i { margin-left         : 3em; }    h3.i { margin-left         : 4em; } @@ -743,7 +744,9 @@ template DocReformCss() {    .next {      right                    : 0em;     } -  .arrow { fill              : #333333; } +  .arrow { +    fill                     : #333333; +  }    .minitoc {      line-height              : 100%%;      font-size                : 90%%; @@ -805,7 +808,7 @@ Consider what if anything should be used here    .wrapper {      display                  : grid;      grid-template-columns    : 100%%; -    grid-template-areas: +    grid-template-areas      :        "headband"        "doc_header"        "doc_title" @@ -929,7 +932,7 @@ Consider what if anything should be used here    .wrapper {      display                  : grid;      grid-template-columns    : 100%%; -    grid-template-areas: +    grid-template-areas      :        "headband"        "doc_header"        "doc_title" @@ -1221,7 +1224,10 @@ Consider what if anything should be used here  #+name: css_dark_shared  #+BEGIN_SRC css -  img { max-width:           100%%; height: auto; } +  img { +    max-width                : 100%%; +    height                   : auto; +  }  #+END_SRC  ***** code block @@ -1294,7 +1300,7 @@ Consider what if anything should be used here  #+name: css_dark_shared  #+BEGIN_SRC css -  p.spaced { white-space:    pre; } +  p.spaced { white-space     : pre; }    p.block {      white-space              : pre;    } @@ -1422,7 +1428,7 @@ Consider what if anything should be used here  #+name: css_dark_shared  #+BEGIN_SRC css -  note { white-space: pre; } +  note { white-space         : pre; }    label.ocn {      width                    : 2%%;      float                    : right; @@ -1510,7 +1516,9 @@ Consider what if anything should be used here    h5 { font-size             : 100%%; }    h6 { font-size             : 100%%; }    h7 { font-size             : 100%%; } -  h0, h1, h2, h3, h4, h5, h6, h7 { text-shadow: .2em .2em .3em #999999; } +  h0, h1, h2, h3, h4, h5, h6, h7 { +    text-shadow              : .2em .2em .3em #999999; +  }    h1.i { margin-left         : 2em; }    h2.i { margin-left         : 3em; }    h3.i { margin-left         : 4em; } @@ -1715,7 +1723,7 @@ Consider what if anything should be used here    .wrapper {      display                  : grid;      grid-template-columns    : 100%%; -    grid-template-areas: +    grid-template-areas      :        "headband"        "doc_header"        "doc_title" @@ -1839,7 +1847,7 @@ Consider what if anything should be used here    .wrapper {      display                  : grid;      grid-template-columns    : 100%%; -    grid-template-areas: +    grid-template-areas      :        "headband"        "doc_header"        "doc_title"  | 
