solarized.css 6.1 KB

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