beige.css 6.8 KB

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