25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

50 lines
1.3 KiB

  1. /**
  2. * White compact & high contrast reveal.js theme, with headers not in capitals.
  3. *
  4. * By Peter Kehl. Based on white.(s)css by Hakim El Hattab, http://hakim.se
  5. *
  6. * - Keep the source similar to black.css - for easy comparison.
  7. * - $mainFontSize controls code blocks, too (although under some ratio).
  8. */
  9. // Default mixins and settings -----------------
  10. @import "../template/mixins";
  11. @import "../template/settings";
  12. // ---------------------------------------------
  13. // Include theme-specific fonts
  14. @import url(./fonts/source-sans-pro/source-sans-pro.css);
  15. // Override theme settings (see ../template/settings.scss)
  16. $backgroundColor: #fff;
  17. $mainColor: #000;
  18. $headingColor: #000;
  19. $mainFontSize: 42px;
  20. $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
  21. $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
  22. $headingTextShadow: none;
  23. $headingLetterSpacing: normal;
  24. $headingTextTransform: uppercase;
  25. $headingFontWeight: 600;
  26. $linkColor: #2a76dd;
  27. $linkColorHover: lighten( $linkColor, 15% );
  28. $selectionBackgroundColor: lighten( $linkColor, 25% );
  29. $heading1Size: 2.5em;
  30. $heading2Size: 1.6em;
  31. $heading3Size: 1.3em;
  32. $heading4Size: 1.0em;
  33. // Change text colors against dark slide backgrounds
  34. @include dark-bg-text-color(#fff);
  35. // Theme template ------------------------------
  36. @import "../template/theme";
  37. // ---------------------------------------------