moon.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. /**
  2. * Solarized Dark theme for reveal.js.
  3. * Author: Achim Staebler
  4. */
  5. @import url(../../lib/font/league-gothic/league-gothic.css);
  6. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  7. /**
  8. * Solarized colors by Ethan Schoonover
  9. */
  10. html * {
  11. color-profile: sRGB;
  12. rendering-intent: auto; }
  13. /*********************************************
  14. * GLOBAL STYLES
  15. *********************************************/
  16. body {
  17. background: #002b36;
  18. background-color: #002b36; }
  19. .reveal {
  20. font-family: "Lato", sans-serif;
  21. font-size: 36px;
  22. font-weight: normal;
  23. color: #93a1a1; }
  24. ::selection {
  25. color: #fff;
  26. background: #d33682;
  27. text-shadow: none; }
  28. .reveal .slides > section,
  29. .reveal .slides > section > section {
  30. line-height: 1.3;
  31. font-weight: inherit; }
  32. /*********************************************
  33. * HEADERS
  34. *********************************************/
  35. .reveal h1,
  36. .reveal h2,
  37. .reveal h3,
  38. .reveal h4,
  39. .reveal h5,
  40. .reveal h6 {
  41. margin: 0 0 20px 0;
  42. color: #eee8d5;
  43. font-family: "League Gothic", Impact, sans-serif;
  44. font-weight: normal;
  45. line-height: 1.2;
  46. letter-spacing: normal;
  47. text-transform: uppercase;
  48. text-shadow: none;
  49. word-wrap: break-word; }
  50. .reveal h1 {
  51. font-size: 3.77em; }
  52. .reveal h2 {
  53. font-size: 2.11em; }
  54. .reveal h3 {
  55. font-size: 1.55em; }
  56. .reveal h4 {
  57. font-size: 1em; }
  58. .reveal h1 {
  59. text-shadow: none; }
  60. /*********************************************
  61. * OTHER
  62. *********************************************/
  63. .reveal p {
  64. margin: 20px 0;
  65. line-height: 1.3; }
  66. /* Ensure certain elements are never larger than the slide itself */
  67. .reveal img,
  68. .reveal video,
  69. .reveal iframe {
  70. max-width: 95%;
  71. max-height: 95%; }
  72. .reveal strong,
  73. .reveal b {
  74. font-weight: bold; }
  75. .reveal em {
  76. font-style: italic; }
  77. .reveal ol,
  78. .reveal dl,
  79. .reveal ul {
  80. display: inline-block;
  81. text-align: left;
  82. margin: 0 0 0 1em; }
  83. .reveal ol {
  84. list-style-type: decimal; }
  85. .reveal ul {
  86. list-style-type: disc; }
  87. .reveal ul ul {
  88. list-style-type: square; }
  89. .reveal ul ul ul {
  90. list-style-type: circle; }
  91. .reveal ul ul,
  92. .reveal ul ol,
  93. .reveal ol ol,
  94. .reveal ol ul {
  95. display: block;
  96. margin-left: 40px; }
  97. .reveal dt {
  98. font-weight: bold; }
  99. .reveal dd {
  100. margin-left: 40px; }
  101. .reveal q,
  102. .reveal blockquote {
  103. quotes: none; }
  104. .reveal blockquote {
  105. display: block;
  106. position: relative;
  107. width: 70%;
  108. margin: 20px auto;
  109. padding: 5px;
  110. font-style: italic;
  111. background: rgba(255, 255, 255, 0.05);
  112. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
  113. .reveal blockquote p:first-child,
  114. .reveal blockquote p:last-child {
  115. display: inline-block; }
  116. .reveal q {
  117. font-style: italic; }
  118. .reveal pre {
  119. display: block;
  120. position: relative;
  121. width: 90%;
  122. margin: 20px auto;
  123. text-align: left;
  124. font-size: 0.55em;
  125. font-family: monospace;
  126. line-height: 1.2em;
  127. word-wrap: break-word;
  128. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
  129. .reveal code {
  130. font-family: monospace; }
  131. .reveal pre code {
  132. display: block;
  133. padding: 5px;
  134. overflow: auto;
  135. max-height: 400px;
  136. word-wrap: normal; }
  137. .reveal table {
  138. margin: auto;
  139. border-collapse: collapse;
  140. border-spacing: 0; }
  141. .reveal table th {
  142. font-weight: bold; }
  143. .reveal table th,
  144. .reveal table td {
  145. text-align: left;
  146. padding: 0.2em 0.5em 0.2em 0.5em;
  147. border-bottom: 1px solid; }
  148. .reveal table th[align="center"],
  149. .reveal table td[align="center"] {
  150. text-align: center; }
  151. .reveal table th[align="right"],
  152. .reveal table td[align="right"] {
  153. text-align: right; }
  154. .reveal table tr:last-child td {
  155. border-bottom: none; }
  156. .reveal sup {
  157. vertical-align: super; }
  158. .reveal sub {
  159. vertical-align: sub; }
  160. .reveal small {
  161. display: inline-block;
  162. font-size: 0.6em;
  163. line-height: 1.2em;
  164. vertical-align: top; }
  165. .reveal small * {
  166. vertical-align: top; }
  167. /*********************************************
  168. * LINKS
  169. *********************************************/
  170. .reveal a {
  171. color: #268bd2;
  172. text-decoration: none;
  173. -webkit-transition: color 0.15s ease;
  174. -moz-transition: color 0.15s ease;
  175. transition: color 0.15s ease; }
  176. .reveal a:hover {
  177. color: #78b9e6;
  178. text-shadow: none;
  179. border: none; }
  180. .reveal .roll span:after {
  181. color: #fff;
  182. background: #1a6091; }
  183. /*********************************************
  184. * IMAGES
  185. *********************************************/
  186. .reveal section img {
  187. margin: 15px 0px;
  188. background: rgba(255, 255, 255, 0.12);
  189. border: 4px solid #93a1a1;
  190. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  191. .reveal section img.plain {
  192. border: 0;
  193. box-shadow: none; }
  194. .reveal a img {
  195. -webkit-transition: all 0.15s linear;
  196. -moz-transition: all 0.15s linear;
  197. transition: all 0.15s linear; }
  198. .reveal a:hover img {
  199. background: rgba(255, 255, 255, 0.2);
  200. border-color: #268bd2;
  201. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  202. /*********************************************
  203. * NAVIGATION CONTROLS
  204. *********************************************/
  205. .reveal .controls .navigate-left,
  206. .reveal .controls .navigate-left.enabled {
  207. border-right-color: #268bd2; }
  208. .reveal .controls .navigate-right,
  209. .reveal .controls .navigate-right.enabled {
  210. border-left-color: #268bd2; }
  211. .reveal .controls .navigate-up,
  212. .reveal .controls .navigate-up.enabled {
  213. border-bottom-color: #268bd2; }
  214. .reveal .controls .navigate-down,
  215. .reveal .controls .navigate-down.enabled {
  216. border-top-color: #268bd2; }
  217. .reveal .controls .navigate-left.enabled:hover {
  218. border-right-color: #78b9e6; }
  219. .reveal .controls .navigate-right.enabled:hover {
  220. border-left-color: #78b9e6; }
  221. .reveal .controls .navigate-up.enabled:hover {
  222. border-bottom-color: #78b9e6; }
  223. .reveal .controls .navigate-down.enabled:hover {
  224. border-top-color: #78b9e6; }
  225. /*********************************************
  226. * PROGRESS BAR
  227. *********************************************/
  228. .reveal .progress {
  229. background: rgba(0, 0, 0, 0.2); }
  230. .reveal .progress span {
  231. background: #268bd2;
  232. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  233. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  234. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }