diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-05 12:44:29 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-05 12:44:29 -0700 |
commit | 5d790db5cf3ca97f901b3d64adc67da43d290ac0 (patch) | |
tree | 78fd26aa4bf66ba98ca31f6e1727b7f1cd18c65c | |
parent | 381654a7043184c0b0ddf1c2e3fe5c35bfb1cd47 (diff) | |
download | pandoc-5d790db5cf3ca97f901b3d64adc67da43d290ac0.tar.gz |
Add CSS for hanging-indent div to epub.css.
This is for hanging indents with pandoc-citeproc, to be
supported in a later release.
-rw-r--r-- | data/epub.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/epub.css b/data/epub.css index e27f4e809..e0fb3fd93 100644 --- a/data/epub.css +++ b/data/epub.css @@ -22,3 +22,4 @@ span.smallcaps{ font-variant: small-caps; } span.underline{ text-decoration: underline; } q { quotes: "“" "”" "‘" "’"; } div.column{ display: inline-block; vertical-align: top; width: 50%; } +div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;} |