beige.css 6.7 KB

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