您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

40 行
1.2 KiB

  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. // Change text colors against dark slide backgrounds
  27. @include dark-bg-text-color(#fff);
  28. // Theme template ------------------------------
  29. @import "../template/theme";
  30. // ---------------------------------------------