diff options
author | a-vrma <29077900+a-vrma@users.noreply.github.com> | 2020-08-30 18:12:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 15:12:12 -0700 |
commit | 6cae8208e7dac5e83c232f89207579ce55b096b8 (patch) | |
tree | a08b38f43fe8b3998fb9209d164d3dbeb9abe7f2 /data | |
parent | 8369eb67d77e52c4ee01c6080b335a8afd0a19d0 (diff) | |
download | pandoc-6cae8208e7dac5e83c232f89207579ce55b096b8.tar.gz |
epub.css: Fix cover page selectors and add note explaining their use. (#6649)
Diffstat (limited to 'data')
-rw-r--r-- | data/epub.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/data/epub.css b/data/epub.css index a7ec1c376..f7d4ab14e 100644 --- a/data/epub.css +++ b/data/epub.css @@ -7,9 +7,10 @@ h3 { text-align: left; } h4 { text-align: left; } h5 { text-align: left; } h6 { text-align: left; } +/* For title, author, and date on the cover page */ h1.title { } -h2.author { } -h3.date { } +p.author { } +p.date { } nav#toc ol, nav#landmarks ol { padding: 0; margin-left: 1em; } nav#toc ol li, |