simple.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. // Theme template ------------------------------
  27. @import "../template/theme";
  28. // ---------------------------------------------