JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Sky theme for reveal.js. |
| 3 | * |
| 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
| 5 | */ |
| 6 | |
| 7 | |
| 8 | // Default mixins and settings ----------------- |
| 9 | @import "../template/mixins"; |
| 10 | @import "../template/settings"; |
| 11 | // --------------------------------------------- |
| 12 | |
| 13 | |
| 14 | |
| 15 | // Include theme-specific fonts |
| 16 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); |
| 17 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); |
| 18 | |
| 19 | |
| 20 | // Override theme settings (see ../template/settings.scss) |
| 21 | $mainFont: 'Open Sans', sans-serif; |
| 22 | $mainColor: #333; |
| 23 | $headingFont: 'Quicksand', sans-serif; |
| 24 | $headingColor: #333; |
| 25 | $headingLetterSpacing: -0.08em; |
| 26 | $headingTextShadow: none; |
| 27 | $backgroundColor: #f7fbfc; |
| 28 | $linkColor: #3b759e; |
| 29 | $linkColorHover: lighten( $linkColor, 20% ); |
| 30 | $selectionBackgroundColor: #134674; |
| 31 | |
Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame^] | 32 | $overlayElementBgColor: 0, 0, 0; |
| 33 | $overlayElementFgColor: 240, 240, 240; |
| 34 | |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 35 | // Fix links so they are not cut off |
| 36 | .reveal a { |
| 37 | line-height: 1.3em; |
| 38 | } |
| 39 | |
| 40 | // Background generator |
| 41 | @mixin bodyBackground() { |
| 42 | @include radial-gradient( #add9e4, #f7fbfc ); |
| 43 | } |
| 44 | |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 45 | // Change text colors against dark slide backgrounds |
| 46 | @include dark-bg-text-color(#fff); |
| 47 | |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 48 | |
| 49 | |
| 50 | // Theme template ------------------------------ |
| 51 | @import "../template/theme"; |
| 52 | // --------------------------------------------- |