summaryrefslogtreecommitdiff
path: root/deck.js/themes/style/swiss.scss
diff options
context:
space:
mode:
Diffstat (limited to 'deck.js/themes/style/swiss.scss')
-rw-r--r--deck.js/themes/style/swiss.scss107
1 files changed, 107 insertions, 0 deletions
diff --git a/deck.js/themes/style/swiss.scss b/deck.js/themes/style/swiss.scss
new file mode 100644
index 0000000..f9b0e76
--- /dev/null
+++ b/deck.js/themes/style/swiss.scss
@@ -0,0 +1,107 @@
+.deck-container {
+ font-family: "Helvetica Neue", sans-serif;
+ font-size:1.75em;
+ background:#fff;
+
+ .slide {
+ background:#fff;
+
+ h1 {
+ color:#000;
+ }
+
+ h2 {
+ color:#c00;
+ border-bottom-color:#ccc;
+ }
+
+ h3 {
+ color:#888;
+ }
+
+ pre {
+ border-color:#ccc;
+ }
+
+ code {
+ color:#888;
+ }
+
+ blockquote {
+ font-size:2em;
+ font-style:italic;
+ padding:1em 2em;
+ color:#000;
+ border-left:5px solid #ccc;
+
+ p {
+ margin:0;
+ }
+
+ cite {
+ font-size:.5em;
+ font-style:normal;
+ font-weight:bold;
+ color:#888;
+ }
+ }
+
+ ::-moz-selection{ background:#c00; color:#fff; }
+ ::selection { background:#c00; color:#fff; }
+
+ a {
+ &, &:hover, &:focus, &:active, &:visited {
+ color:#c00;
+ text-decoration:none;
+ }
+
+ &:hover, &:focus {
+ text-decoration:underline;
+ }
+ }
+ }
+
+ > .slide {
+ .deck-before, .deck-previous {
+ opacity:0.4;
+
+ &:not(.deck-child-current) {
+ .deck-before, .deck-previous {
+ opacity:1;
+ }
+ }
+ }
+
+ .deck-child-current {
+ opacity:1;
+ }
+ }
+
+ .deck-prev-link, .deck-next-link {
+ background:#ccc;
+ font-family:serif; // sans-serif arrows x-browser fail
+
+ &, &:hover, &:focus, &:active, &:visited {
+ color:#fff;
+ }
+
+ &:hover, &:focus {
+ background:#c00;
+ text-decoration:none;
+ }
+ }
+
+ .deck-status {
+ font-size:0.6666em;
+ }
+
+ &.deck-menu {
+ .slide {
+ background:#eee;
+ }
+
+ .deck-current, .no-touch & .slide:hover {
+ background:#ddf;
+ }
+ }
+}