diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-08-16 10:16:03 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-08-16 10:16:03 -0700 |
commit | 8883261b6e4ed4188c74c9f65e5170b5b36fa469 (patch) | |
tree | 296ae22a4cd40e63cbe7805181aa39a39711cb03 | |
parent | 1e17922b95c2d8289ced7b1d75ace377bdddbb70 (diff) | |
parent | 74d37517ebf8babdfee3c47dfcd0cbdcf332236e (diff) | |
download | pandoc-8883261b6e4ed4188c74c9f65e5170b5b36fa469.tar.gz |
Merge pull request #2352 from ousia/master
added selectors for nested emphasis (epub.css)
-rw-r--r-- | data/epub.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/epub.css b/data/epub.css index 1ea24680d..594a1e01e 100644 --- a/data/epub.css +++ b/data/epub.css @@ -12,4 +12,7 @@ h2.author { } h3.date { } ol.toc { padding: 0; margin-left: 1em; } ol.toc li { list-style-type: none; margin: 0; padding: 0; } -a.footnoteRef { vertical-align: super; }
\ No newline at end of file +a.footnoteRef { vertical-align: super; } +em, em em em, em em em em em { font-style: italic;} +em em, em em em em { font-style: normal; } + |