|
| 1 | + |
| 2 | +@media print { |
| 3 | + html:not(.print-pdf) { |
| 4 | + overflow: visible; |
| 5 | + width: auto; |
| 6 | + height: auto; |
| 7 | + |
| 8 | + body { |
| 9 | + margin: 0; |
| 10 | + padding: 0; |
| 11 | + overflow: visible; |
| 12 | + } |
| 13 | + } |
| 14 | + |
| 15 | + html:not(.print-pdf) .reveal { |
| 16 | + background: #fff; |
| 17 | + font-size: 20pt; |
| 18 | + |
| 19 | + .controls, |
| 20 | + .state-background, |
| 21 | + .progress, |
| 22 | + .backgrounds, |
| 23 | + .slide-number { |
| 24 | + display: none !important; |
| 25 | + } |
| 26 | + |
| 27 | + p, td, li { |
| 28 | + font-size: 20pt!important; |
| 29 | + color: #000; |
| 30 | + } |
| 31 | + |
| 32 | + h1,h2,h3,h4,h5,h6 { |
| 33 | + color: #000!important; |
| 34 | + height: auto; |
| 35 | + line-height: normal; |
| 36 | + text-align: left; |
| 37 | + letter-spacing: normal; |
| 38 | + } |
| 39 | + |
| 40 | + h1 { font-size: 28pt !important; } |
| 41 | + h2 { font-size: 24pt !important; } |
| 42 | + h3 { font-size: 22pt !important; } |
| 43 | + h4 { font-size: 22pt !important; font-variant: small-caps; } |
| 44 | + h5 { font-size: 21pt !important; } |
| 45 | + h6 { font-size: 20pt !important; font-style: italic; } |
| 46 | + |
| 47 | + a:link, |
| 48 | + a:visited { |
| 49 | + color: #000 !important; |
| 50 | + font-weight: bold; |
| 51 | + text-decoration: underline; |
| 52 | + } |
| 53 | + |
| 54 | + ul, ol, div, p { |
| 55 | + visibility: visible; |
| 56 | + position: static; |
| 57 | + width: auto; |
| 58 | + height: auto; |
| 59 | + display: block; |
| 60 | + overflow: visible; |
| 61 | + margin: 0; |
| 62 | + text-align: left !important; |
| 63 | + } |
| 64 | + pre, |
| 65 | + table { |
| 66 | + margin-left: 0; |
| 67 | + margin-right: 0; |
| 68 | + } |
| 69 | + pre code { |
| 70 | + padding: 20px; |
| 71 | + } |
| 72 | + blockquote { |
| 73 | + margin: 20px 0; |
| 74 | + } |
| 75 | + |
| 76 | + .slides { |
| 77 | + position: static !important; |
| 78 | + width: auto !important; |
| 79 | + height: auto !important; |
| 80 | + |
| 81 | + left: 0 !important; |
| 82 | + top: 0 !important; |
| 83 | + margin-left: 0 !important; |
| 84 | + margin-top: 0 !important; |
| 85 | + padding: 0 !important; |
| 86 | + zoom: 1 !important; |
| 87 | + transform: none !important; |
| 88 | + |
| 89 | + overflow: visible !important; |
| 90 | + display: block !important; |
| 91 | + |
| 92 | + text-align: left !important; |
| 93 | + perspective: none; |
| 94 | + |
| 95 | + perspective-origin: 50% 50%; |
| 96 | + } |
| 97 | + .slides section { |
| 98 | + visibility: visible !important; |
| 99 | + position: static !important; |
| 100 | + width: auto !important; |
| 101 | + height: auto !important; |
| 102 | + display: block !important; |
| 103 | + overflow: visible !important; |
| 104 | + |
| 105 | + left: 0 !important; |
| 106 | + top: 0 !important; |
| 107 | + margin-left: 0 !important; |
| 108 | + margin-top: 0 !important; |
| 109 | + padding: 60px 20px !important; |
| 110 | + z-index: auto !important; |
| 111 | + |
| 112 | + opacity: 1 !important; |
| 113 | + |
| 114 | + page-break-after: always !important; |
| 115 | + |
| 116 | + transform-style: flat !important; |
| 117 | + transform: none !important; |
| 118 | + transition: none !important; |
| 119 | + } |
| 120 | + .slides section.stack { |
| 121 | + padding: 0 !important; |
| 122 | + } |
| 123 | + .slides section:last-of-type { |
| 124 | + page-break-after: avoid !important; |
| 125 | + } |
| 126 | + .slides section .fragment { |
| 127 | + opacity: 1 !important; |
| 128 | + visibility: visible !important; |
| 129 | + |
| 130 | + transform: none !important; |
| 131 | + } |
| 132 | + |
| 133 | + .r-fit-text { |
| 134 | + white-space: normal !important; |
| 135 | + } |
| 136 | + |
| 137 | + section img { |
| 138 | + display: block; |
| 139 | + margin: 15px 0px; |
| 140 | + background: rgba(255,255,255,1); |
| 141 | + border: 1px solid #666; |
| 142 | + box-shadow: none; |
| 143 | + } |
| 144 | + |
| 145 | + section small { |
| 146 | + font-size: 0.8em; |
| 147 | + } |
| 148 | + |
| 149 | + .hljs { |
| 150 | + max-height: 100%; |
| 151 | + white-space: pre-wrap; |
| 152 | + word-wrap: break-word; |
| 153 | + word-break: break-word; |
| 154 | + font-size: 15pt; |
| 155 | + } |
| 156 | + |
| 157 | + .hljs .hljs-ln-numbers { |
| 158 | + white-space: nowrap; |
| 159 | + } |
| 160 | + |
| 161 | + .hljs td { |
| 162 | + font-size: inherit !important; |
| 163 | + color: inherit !important; |
| 164 | + } |
| 165 | + } |
| 166 | +} |
0 commit comments