Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

290 lines
6.8KB

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