solarized.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  2. /**
  3. * Solarized Light 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: #fdf6e3;
  23. background-color: #fdf6e3; }
  24. .reveal {
  25. font-family: "Lato", sans-serif;
  26. font-size: 36px;
  27. font-weight: normal;
  28. letter-spacing: -0.02em;
  29. color: #657b83; }
  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: #586e75;
  45. font-family: "League Gothic", Impact, sans-serif;
  46. line-height: 0.9em;
  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:not(.image) {
  56. color: #268bd2;
  57. text-decoration: none;
  58. -webkit-transition: color .15s ease;
  59. -moz-transition: color .15s ease;
  60. -ms-transition: color .15s ease;
  61. -o-transition: color .15s ease;
  62. transition: color .15s ease; }
  63. .reveal a:not(.image):hover {
  64. color: #78b9e6;
  65. text-shadow: none;
  66. border: none; }
  67. .reveal .roll span:after {
  68. color: #fff;
  69. background: #1a6091; }
  70. /*********************************************
  71. * IMAGES
  72. *********************************************/
  73. .reveal section img {
  74. margin: 15px 0px;
  75. background: rgba(255, 255, 255, 0.12);
  76. border: 4px solid #657b83;
  77. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  78. -webkit-transition: all .2s linear;
  79. -moz-transition: all .2s linear;
  80. -ms-transition: all .2s linear;
  81. -o-transition: all .2s linear;
  82. transition: all .2s linear; }
  83. .reveal a:hover img {
  84. background: rgba(255, 255, 255, 0.2);
  85. border-color: #268bd2;
  86. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  87. /*********************************************
  88. * NAVIGATION CONTROLS
  89. *********************************************/
  90. .reveal .controls div.navigate-left,
  91. .reveal .controls div.navigate-left.enabled {
  92. border-right-color: #268bd2; }
  93. .reveal .controls div.navigate-right,
  94. .reveal .controls div.navigate-right.enabled {
  95. border-left-color: #268bd2; }
  96. .reveal .controls div.navigate-up,
  97. .reveal .controls div.navigate-up.enabled {
  98. border-bottom-color: #268bd2; }
  99. .reveal .controls div.navigate-down,
  100. .reveal .controls div.navigate-down.enabled {
  101. border-top-color: #268bd2; }
  102. .reveal .controls div.navigate-left.enabled:hover {
  103. border-right-color: #78b9e6; }
  104. .reveal .controls div.navigate-right.enabled:hover {
  105. border-left-color: #78b9e6; }
  106. .reveal .controls div.navigate-up.enabled:hover {
  107. border-bottom-color: #78b9e6; }
  108. .reveal .controls div.navigate-down.enabled:hover {
  109. border-top-color: #78b9e6; }
  110. /*********************************************
  111. * PROGRESS BAR
  112. *********************************************/
  113. .reveal .progress {
  114. background: rgba(0, 0, 0, 0.2); }
  115. .reveal .progress span {
  116. background: #268bd2;
  117. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  118. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  119. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  120. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  121. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  122. /*********************************************
  123. * SLIDE NUMBER
  124. *********************************************/
  125. .reveal .slide-number {
  126. color: #268bd2; }