diff options
Diffstat (limited to 'css/print/pdf.css')
-rw-r--r-- | css/print/pdf.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/css/print/pdf.css b/css/print/pdf.css index 2eb4cf2..f78344c 100644 --- a/css/print/pdf.css +++ b/css/print/pdf.css @@ -149,9 +149,20 @@ ul, ol, div, p { width: 100%; z-index: -1; } + /* All elements should be above the slide-background */ .reveal section>* { position: relative; z-index: 1; } +/* Display slide speaker notes when 'showNotes' is enabled */ +.reveal .speaker-notes-pdf { + display: block; + width: 100%; + max-height: none; + left: auto; + top: auto; + z-index: 100; +} + |