diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-05 12:10:25 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-05 12:10:25 -0800 |
commit | 6666277fa23d2c6a5d747ebf42bd7cd2a2e7c126 (patch) | |
tree | 0e556f9b21dce59e491704e73582886cf3883273 | |
parent | 08efc7db605d26877483c029ed3841e76d5a2f59 (diff) | |
download | pandoc-6666277fa23d2c6a5d747ebf42bd7cd2a2e7c126.tar.gz |
Epub CSS: left-align headers by default.
This is more consistent with the rest of the writers.
-rw-r--r-- | data/epub.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/data/epub.css b/data/epub.css index 6737f5cc7..3d9c59395 100644 --- a/data/epub.css +++ b/data/epub.css @@ -1,12 +1,12 @@ /* This defines styles and classes used in the book */ body { margin-left: 5%; margin-right: 5%; margin-top: 5%; margin-bottom: 5%; text-align: justify; font-size: medium; } code { font-family: monospace; } -h1 { text-align: center; } -h2 { text-align: center; } -h3 { text-align: center; } -h4 { text-align: center; } -h5 { text-align: center; } -h6 { text-align: center; } +h1 { text-align: left; } +h2 { text-align: left; } +h3 { text-align: left; } +h4 { text-align: left; } +h5 { text-align: left; } +h6 { text-align: left; } h1.title { } h2.author { } h3.date { } |