.
[hacks/simpleWebSlides.git] / simpleWebSlides.css
index a42c85e..7bacd83 100644 (file)
@@ -62,7 +62,10 @@ body {
 }
 
 .sws-footer{
+    position: relative;
     display:block;
+    bottom: 0pt;
+    left: 0pt;
 }
 
 .sws-header, .sws-title, .sws-inner-canvas, .sws-footer{
@@ -164,6 +167,19 @@ body > h1, body > h2, body > h3 {
 
 p { width: 100%; }
 
+/* counters for the toc */
+
+.sws-toc ul {
+    counter-reset: list-item;
+}
+
+.sws-toc li {
+    counter-increment: list-item;
+
+}
+.sws-toc li::marker {
+    content : counters(list-item, '.');
+}
 
 
 /*             Control Panel             */
@@ -274,4 +290,24 @@ p { width: 100%; }
     overflow: auto;
     border: 1px;
     padding: 1px 1px 1px 1px;
+}
+
+#sws-help-panel-canvas {
+    color:white;
+    background:black;
+    z-index: 101;
+    position:fixed;
+    width:30%;
+    left:35%;
+    top:25%;
+    opacity: 0.9;
+    border-radius: 1vh;
+    display:none;
+}
+#sws-help-panel-canvas * {
+    color: white;
+    font-family: sans;
+}
+#sws-help-panel-canvas h1 {
+    font-size: large;
 }
\ No newline at end of file