Refactor files.
[hacks/simpleWebSlides.git] / themes / blackAndWhite.css
diff --git a/themes/blackAndWhite.css b/themes/blackAndWhite.css
new file mode 100644 (file)
index 0000000..bb509da
--- /dev/null
@@ -0,0 +1,54 @@
+@import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic&subset=latin,greek-ext,greek,latin-ext);
+
+body {
+    font-family: 'Ubuntu', sans-serif;
+    font-size: 18pt;
+}
+
+@media screen {
+    body {
+        background: black;
+        color: white;
+    }
+}
+@media print {
+    body {
+        background: white;
+        color: black;
+    }
+}
+
+
+a, a:visited, em {
+    color:orange;
+}
+
+
+ul {
+    list-style-type: square;
+}
+
+span.slide_num_sep:after {
+    content : "/";
+}
+.footer {
+    text-align: right;
+}
+
+.alert {
+    color: green;
+}
+
+@media screen {
+/* Slide transitions, only for screen */
+.other_slides {
+    opacity: 0.0;
+    transition: opacity 0.25s ease-in;
+}
+
+.current_slide {
+    opacity: 1.0;
+    transition: opacity 0.25s ease-out 0.25s;
+}
+
+}
\ No newline at end of file