]> git.plutz.net Git - clickslide/blobdiff - clickslide.css
styling of lists
[clickslide] / clickslide.css
index 56313c8747d930ad568eaa8998d49fced5928854..2f5ca873257156f7a560c2e1e5acf196996a23f2 100644 (file)
@@ -1,6 +1,50 @@
+/* === Colors === */
+
+footer,
+body a.toplevel:before,
+body span.count,
+div.slide:target:after,
+div.slide:target + a, div.slide:target + a + a,
+:target + a:before, :target + a + a:before
+{ color: #888; }
+
+body
+{ background-color: #AAA;
+  background-image: repeating-linear-gradient( to bottom right, #AAA, #999 8px);
+}
+
+div.slide
+{ background-color: #FFF;
+  background-image: repeating-linear-gradient( #FFF, #EEE 4px);
+}
+
+div.slide:target:after,
+footer:before, body:after
+{ background-color: #EEE;
+  background-image: repeating-linear-gradient(#EEE, #DDD 8px);
+}
+
+div.slide h1, div.slide h2
+{ background-color: #EEE;
+  background-image: repeating-linear-gradient(#EEE, #DDD 8px);
+}
+
+div.slide pre, div.slide code
+{ background-color: #DDD;
+  background-image: repeating-linear-gradient(#CCC, #DDD 4px);
+}
+
+div.slide:after  /* slide number on overview screen */
+{ color: #AAA; }
+
+/* === Overall Layout === */
+
 * {
   box-sizing: border-box;
   margin: 0; padding: 0;
+  background-position: center;
+  background-repeat: no-repeat;
+  background-size: cover;
 }
 
 /*  min-height: 240px */     body { font-size:  9px; }
 body {
   font-family: sans-serif;
   padding: 2em 1em 6em 1em;
-  background-color: #555;
+  #background-color: #555;
   text-align: center;
   overflow-x: hidden;
 }
-body * { text-align: left; }
+body * {
+  text-align: left;
+  font-size: inherit;
+}
 
 body:after {
   position: fixed;
   bottom: 0; left: 0;
   width: 100%;
-  background-color: #EEE;
   height: 1.25em;
   content: ' ';
+  #background: #EEE repeating-linear-gradient(#EEE, #DDD 8px);
 }
 
 a.previous, a.next ,a.toplevel {
@@ -43,16 +90,17 @@ footer {
   font-size: .75em;
   padding: .5em 4em .5em 12em;
   text-align: center;
-  color: #888;
+  #color: #888;
   z-index: 4;
+  /* footer must not have background, so slide number is not covered */
 }
-footer:before {
+footer:before {  /* fake background in case footer spans multiple lines */
   content: ' ';
   position: absolute;
   top: 0; left: 0;
   bottom: 1.5em;
   width: 100%;
-  background-color: #EEE;
+  #background: #EEE repeating-linear-gradient(#EEE, #DDD 8px);
   z-index: -1;
 }
 
@@ -62,12 +110,12 @@ body a.toplevel {
   width: 2ex; overflow: hidden;
   font-size: .875em;
   padding-bottom: .25em;
-  color: #EEE;
+  color: transparent;
   z-index: 5;
 }
 body a.toplevel:before {
-  color: #888;
-  content: '\2ba4'
+  #color: #888;
+  content: '\2196';
 }
 
 body span.count {
@@ -75,7 +123,7 @@ body span.count {
   bottom: 0; left: 6.25em;
   font-size: .875em;
   padding-bottom: .125em;
-  color: #888;
+  #color: #888;
   z-index: 5;
 }
 
@@ -94,13 +142,24 @@ div.slide {
   border: 1px solid black;
 }
 
+div.slide:after {  /* slide number */
+  position: absolute;
+  bottom: 0; left: 0;
+  font-size: 15em;
+  line-height: 1em;
+  text-align: left;
+  content: attr(count);
+  padding-left: .125em;
+  #color: #DDD;
+}
+
 div.slide + a { display: none; }
 a.nextslide {
   display: inline-block;
   position: relative;
   vertical-align: top;
   width: 48em; line-height: 30em;
-  color: rgba(0, 0, 0, 0);
+  color: transparent;
   z-index: 2;
 }
 #div.slide:nth-of-type(1) { margin-right: .5em; }
@@ -108,28 +167,16 @@ a.nextslide {
 /* ==== Slide Appearance ==== */
 
 div.slide {
-  background: #FFF no-repeat center;
+  #background: #FFF no-repeat center;
   text-align: center;
   line-height: 1.5em;
 }
 
-div.slide:after {
-  position: absolute;
-  bottom: 0; left: 0;
-  width: 100%;
-  font-size: .875em;
-  line-height: 1.5em;
-  text-align: left;
-  content: attr(count) " /";
-  padding-left: 4em;
-  background-color: #EEE;
-  color: #888;
-}
-
 div.slide > * {
   margin-top: 1em;
   max-width: 85%;
-  z-index: 1;
+  margin-left: auto;
+  margin-right: auto;
 }
 
 div.slide > *:first-child:last-child,
@@ -140,12 +187,12 @@ div.slide > h2:first-child + :last-child {
 
 div.slide h1, div.slide h2 {
   display: block;
-  background-color: #EEE;
   text-align: center;
   font-size: 1.5em;
   margin-top: 0;
   margin-bottom: 1em;
   width: 100%; max-width: 100%;
+  #background: #EEE repeating-linear-gradient(#EEE, #DDD 8px);
 }
 
 div.slide h1,
@@ -159,9 +206,21 @@ div.slide h2 {
   padding: .25em 1em;
 }
 
+div.slide > table {
+  width: 85%;
+}
+div.slide * table {
+  width: 100%;
+}
+
+div.slide ul li {
+  list-style-type: square;
+  margin-left: 2em;
+}
+
 div.slide ul ul, div.slide ul ol,
 div.slide ol ul, div.slide ol ol {
-  margin-left: 1em;
+  margin-left: -1em;
 }
 
 div.slide > ul,
@@ -170,11 +229,21 @@ div.slide > ol {
   margin: .25em auto;
 }
 
+div.slide li pre {
+  margin-bottom: .25em;
+}
+
+div.slide pre, div.slide code {
+  #background-color: rgba(224,224,224,128);
+  font-family: monospace;
+}
 div.slide pre {
-  background-color: rgba(192,192,192,128);
   padding: 1ex;
   text-align: left;
-  font-family: monospace;
+  overflow: hidden;
+}
+div.slide code {
+  padding: 0 .5em;
 }
 
 /* ==== Slide Display ==== */
@@ -188,19 +257,35 @@ div.slide:target {
   border: none;
   font-size: inherit;
 }
+
+/* slide number, footer bar*/
+div.slide:target:after {
+  position: absolute;
+  bottom: 0; left: 0;
+  width: 100%;
+  font-size: .875em;
+  line-height: 1.5em;
+  text-align: left;
+  content: attr(count) " /";
+  padding-left: 4em;
+  #color: #888;
+  #background: #EEE repeating-linear-gradient(#EEE, #DDD 8px);
+}
+
+/* back and forth link buttons */
 div.slide:target + a,
 div.slide:target + a + a {
   position: static;
   display: block;
   font-size: inherit;
   line-height: 1em;
-  color: #888;
+  #color: #888;
 }
 :target + a:before, :target + a + a:before {
   display: block;
   position: fixed;
   bottom: 0;
-  color: #888;
+  #color: #888;
   padding: 0 1em .25em 1em;
   z-index: 4;
 }