moon.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  2. /**
  3. * Solarized Dark theme for reveal.js.
  4. * Author: Achim Staebler
  5. */
  6. @font-face {
  7. font-family: 'League Gothic';
  8. src: url("../../lib/font/league_gothic-webfont.eot");
  9. src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
  10. font-weight: normal;
  11. font-style: normal; }
  12. /**
  13. * Solarized colors by Ethan Schoonover
  14. */
  15. html * {
  16. color-profile: sRGB;
  17. rendering-intent: auto; }
  18. /*********************************************
  19. * GLOBAL STYLES
  20. *********************************************/
  21. body {
  22. background: #002b36;
  23. background-color: #002b36; }
  24. .reveal {
  25. font-family: "Lato", sans-serif;
  26. font-size: 36px;
  27. font-weight: normal;
  28. letter-spacing: -0.02em;
  29. color: #93a1a1; }
  30. ::selection {
  31. color: white;
  32. background: #d33682;
  33. text-shadow: none; }
  34. /*********************************************
  35. * HEADERS
  36. *********************************************/
  37. .reveal h1,
  38. .reveal h2,
  39. .reveal h3,
  40. .reveal h4,
  41. .reveal h5,
  42. .reveal h6 {
  43. margin: 0 0 20px 0;
  44. color: #eee8d5;
  45. font-family: "League Gothic", Impact, sans-serif;
  46. line-height: 1em;
  47. letter-spacing: 0.02em;
  48. text-transform: uppercase;
  49. text-shadow: none; }
  50. .reveal h1 {
  51. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
  52. /*********************************************
  53. * LINKS
  54. *********************************************/
  55. .reveal a {
  56. color: #268bd2;
  57. text-decoration: none;
  58. -webkit-transition: color .15s ease;
  59. -moz-transition: color .15s ease;
  60. transition: color .15s ease; }
  61. .reveal a:hover {
  62. color: #78b9e6;
  63. text-shadow: none;
  64. border: none; }
  65. .reveal .roll span:after {
  66. color: #fff;
  67. background: #1a6091; }
  68. /*********************************************
  69. * IMAGES
  70. *********************************************/
  71. .reveal section img {
  72. margin: 15px 0px;
  73. background: rgba(255, 255, 255, 0.12);
  74. border: 4px solid #93a1a1;
  75. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  76. .reveal a img {
  77. -webkit-transition: all .15s linear;
  78. -moz-transition: all .15s linear;
  79. transition: all .15s linear; }
  80. .reveal a:hover img {
  81. background: rgba(255, 255, 255, 0.2);
  82. border-color: #268bd2;
  83. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  84. /*********************************************
  85. * NAVIGATION CONTROLS
  86. *********************************************/
  87. .reveal .controls div.navigate-left,
  88. .reveal .controls div.navigate-left.enabled {
  89. border-right-color: #268bd2; }
  90. .reveal .controls div.navigate-right,
  91. .reveal .controls div.navigate-right.enabled {
  92. border-left-color: #268bd2; }
  93. .reveal .controls div.navigate-up,
  94. .reveal .controls div.navigate-up.enabled {
  95. border-bottom-color: #268bd2; }
  96. .reveal .controls div.navigate-down,
  97. .reveal .controls div.navigate-down.enabled {
  98. border-top-color: #268bd2; }
  99. .reveal .controls div.navigate-left.enabled:hover {
  100. border-right-color: #78b9e6; }
  101. .reveal .controls div.navigate-right.enabled:hover {
  102. border-left-color: #78b9e6; }
  103. .reveal .controls div.navigate-up.enabled:hover {
  104. border-bottom-color: #78b9e6; }
  105. .reveal .controls div.navigate-down.enabled:hover {
  106. border-top-color: #78b9e6; }
  107. /*********************************************
  108. * PROGRESS BAR
  109. *********************************************/
  110. .reveal .progress {
  111. background: rgba(0, 0, 0, 0.2); }
  112. .reveal .progress span {
  113. background: #268bd2;
  114. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  115. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  116. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  117. /*********************************************
  118. * SLIDE NUMBER
  119. *********************************************/
  120. .reveal .slide-number {
  121. color: #268bd2; }