beige.css 7.0 KB

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