.
[hacks/simpleWebSlides.git] / simpleWebSlides.css
index 430c05a..c2c72b7 100644 (file)
@@ -13,13 +13,13 @@ body {
 }
 
 .sws-canvas {
+    display:flex;
+    justify-content: center;
+    flex-direction:column;
     box-sizing: border-box;
-    text-align: center;
-    vertical-align:middle;
 }
-.sws-cover {
-    justify-content: center;
-    -webkit-justify-content: center;
+
+.sws-cover .sws-content {
     text-align:center;
 }
 
@@ -45,15 +45,14 @@ body {
 }
 
 .sws-header, .sws-title, .sws-inner-canvas, .sws-footer{
-    display:inline-block;
+    display:block;
     margin:0;
     padding:0;
     width: 100%;
     box-sizing: border-box;
+    overflow:hidden;
 }
 
-
-
 body > h1, body > h2, body > h3, body > a.sws-previous {
     display: none;
 }
@@ -71,10 +70,22 @@ body > h1, body > h2, body > h3, body > a.sws-previous {
 
 }
 
+:root.sws-by-width body {
+    font-size: 3.5vh;
+}
+:root.sws-by-height.sws-aspect-4-3 body {
+    font-size: 2.625vw;
+}
+:root.sws-by-height.sws-aspect-16-9 body {
+    font-size: 1.96875vw;
+}
+:root.sws-by-height.sws-aspect-16-10 body {
+    font-size: 2.1875vw;
+}
 
 :root.sws-by-width.sws-aspect-4-3 .sws-canvas {
-    width:133.3vh;
-    height:100vh;
+       width:133.3vh;
+       height:100vh;
 }
 
 :root.sws-by-width.sws-aspect-16-9 .sws-canvas {
@@ -131,14 +142,14 @@ body > h1, body > h2, body > h3, body > a.sws-previous {
 /*                 Print Mode                 */
 /* ****************************************** */
 
-
 :root.sws-print body {
     background: white;
     width: 297mm;
-    padding: 0pt 0pt 0pt 0pt;
-    margin: 0pt 0pt 0pt 0pt;
-
+    padding: 0;
+    margin: 0;
+    font-size: 21pt; 
 }
+
 @media print {
 
     @page {
@@ -149,14 +160,12 @@ body > h1, body > h2, body > h3, body > a.sws-previous {
 }
 
 :root.sws-print .sws-canvas {
-    position: relative;
     width: 297mm;
-    height: 209mm;
+    height: 210mm;
     /* not 210mm to avoid rounding errors */
     page-break-after: always;
     padding: 0pt 0pt 0pt 0pt;
     margin: 0pt 0pt 0pt 0pt;
-    overflow: hidden;
 }
 
 :root.sws-print .sws-canvas:last {
@@ -167,7 +176,6 @@ body > h1, body > h2, body > h3, body > a.sws-previous {
     opacity: 1;
 }
 
-
 p { width: 100%; }
 
 /* counters for the toc */
@@ -315,10 +323,10 @@ p { width: 100%; }
     font-size: large;
 }
 
-/* embedded SVG images are inlined and their height matches twice the size of a small letter x */
+/* embedded SVG images are inlined and their height matches twice the font-size */
 object[type="image/svg+xml"] {
     display:inline-block;
     font-size:inherit;
-    height: 2.5ex;
+    height: 2em;
     vertical-align:middle;
 }
\ No newline at end of file