diff options
Diffstat (limited to 'css/print/pdf.css')
-rw-r--r-- | css/print/pdf.css | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/css/print/pdf.css b/css/print/pdf.css index 20c646a..752d955 100644 --- a/css/print/pdf.css +++ b/css/print/pdf.css @@ -72,15 +72,8 @@ ul, ol, div, p { overflow: visible; display: block; - -webkit-perspective: none; - -moz-perspective: none; - -ms-perspective: none; - perspective: none; - - -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ - -moz-perspective-origin: 50% 50%; - -ms-perspective-origin: 50% 50%; - perspective-origin: 50% 50%; + perspective: none; + perspective-origin: 50% 50%; } .reveal .slides .pdf-page { @@ -103,15 +96,8 @@ ul, ol, div, p { opacity: 1 !important; - -webkit-transform-style: flat !important; - -moz-transform-style: flat !important; - -ms-transform-style: flat !important; - transform-style: flat !important; - - -webkit-transform: none !important; - -moz-transform: none !important; - -ms-transform: none !important; - transform: none !important; + transform-style: flat !important; + transform: none !important; } .reveal section.stack { @@ -144,9 +130,14 @@ ul, ol, div, p { } /* Display slide speaker notes when 'showNotes' is enabled */ +.reveal.show-notes { + max-width: none; + max-height: none; +} .reveal .speaker-notes-pdf { display: block; width: 100%; + height: auto; max-height: none; top: auto; right: auto; @@ -162,6 +153,7 @@ ul, ol, div, p { background-color: transparent; padding: 20px; page-break-after: always; + border: 0; } /* Display slide numbers when 'slideNumber' is enabled */ |