beige.css 6.7 KB

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