diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-23 11:36:04 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-23 11:36:32 -0700 |
commit | 342435f162338e7f771599f722a26b2c871fce0a (patch) | |
tree | 94aac43b20b43481011f8e273c33b3c815dad35f | |
parent | 0aa45c20bc2bcca999aa3e74eda9e4c2c329f008 (diff) | |
download | pandoc-342435f162338e7f771599f722a26b2c871fce0a.tar.gz |
Updated dzslides styles based on new template.html.
-rw-r--r-- | default.dzslides | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/default.dzslides b/default.dzslides index 33e1ee098..e0a14424a 100644 --- a/default.dzslides +++ b/default.dzslides @@ -20,7 +20,7 @@ $endfor$ $else$ <style> html { background-color: black; } - body { background-color: white; } + body { background-color: white; border-radius: 12px} /* A section is a slide. It's size is 800x600, and this will never change */ section { font-family: Arial, serif; @@ -41,18 +41,30 @@ $else$ h3 { font-size: 100%; } blockquote { font-style: italic } q { - display: inline-block; - width: 700px; - height: 600px; + display: block; + width: 100%; + height: 100%; background-color: black; color: white; font-size: 60px; padding: 50px; } + /* Figures are displayed full-page, with the caption on + top of the image/video */ + figure { + background-color: black; + } + figcaption { + margin: 70px; + } footer { position: absolute; - bottom: 10px; - right: 20px; + bottom: 0; + width: 100%; + padding: 40px; + text-align: right; + background-color: #F3F4F8; + border-top: 1px solid #CCC; } /* Transition effect */ |