simple.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * A simple theme for reveal.js presentations, similar
  3. * to the default theme. The accent color is darkblue.
  4. *
  5. * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
  6. * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  7. */
  8. // Default mixins and settings -----------------
  9. @import "../template/mixins";
  10. @import "../template/settings";
  11. // ---------------------------------------------
  12. // Include theme-specific fonts
  13. @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
  14. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  15. // Override theme settings (see ../template/settings.scss)
  16. $mainFont: 'Lato', sans-serif;
  17. $mainColor: #000;
  18. $headingFont: 'News Cycle', Impact, sans-serif;
  19. $headingColor: #000;
  20. $headingTextShadow: none;
  21. $headingTextTransform: none;
  22. $backgroundColor: #fff;
  23. $linkColor: #00008B;
  24. $linkColorHover: lighten( $linkColor, 20% );
  25. $selectionBackgroundColor: rgba(0, 0, 0, 0.99);
  26. section.has-dark-background {
  27. &, h1, h2, h3, h4, h5, h6 {
  28. color: #fff;
  29. }
  30. }
  31. // Theme template ------------------------------
  32. @import "../template/theme";
  33. // ---------------------------------------------