reveal.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326
  1. /*!
  2. * reveal.js
  3. * http://lab.hakim.se/reveal-js
  4. * MIT licensed
  5. *
  6. * Copyright (C) 2016 Hakim El Hattab, http://hakim.se
  7. */
  8. /*********************************************
  9. * RESET STYLES
  10. *********************************************/
  11. html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,
  12. .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,
  13. .reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,
  14. .reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,
  15. .reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,
  16. .reveal b, .reveal u, .reveal center,
  17. .reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,
  18. .reveal fieldset, .reveal form, .reveal label, .reveal legend,
  19. .reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,
  20. .reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,
  21. .reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,
  22. .reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,
  23. .reveal time, .reveal mark, .reveal audio, .reveal video {
  24. margin: 0;
  25. padding: 0;
  26. border: 0;
  27. font-size: 100%;
  28. font: inherit;
  29. vertical-align: baseline; }
  30. .reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,
  31. .reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {
  32. display: block; }
  33. /*********************************************
  34. * GLOBAL STYLES
  35. *********************************************/
  36. html,
  37. body {
  38. width: 100%;
  39. height: 100%;
  40. overflow: hidden; }
  41. body {
  42. position: relative;
  43. line-height: 1;
  44. background-color: #fff;
  45. color: #000; }
  46. /*********************************************
  47. * VIEW FRAGMENTS
  48. *********************************************/
  49. .reveal .slides section .fragment {
  50. opacity: 0;
  51. visibility: hidden;
  52. -webkit-transition: all .2s ease;
  53. transition: all .2s ease; }
  54. .reveal .slides section .fragment.visible {
  55. opacity: 1;
  56. visibility: visible; }
  57. .reveal .slides section .fragment.grow {
  58. opacity: 1;
  59. visibility: visible; }
  60. .reveal .slides section .fragment.grow.visible {
  61. -webkit-transform: scale(1.3);
  62. transform: scale(1.3); }
  63. .reveal .slides section .fragment.shrink {
  64. opacity: 1;
  65. visibility: visible; }
  66. .reveal .slides section .fragment.shrink.visible {
  67. -webkit-transform: scale(0.7);
  68. transform: scale(0.7); }
  69. .reveal .slides section .fragment.zoom-in {
  70. -webkit-transform: scale(0.1);
  71. transform: scale(0.1); }
  72. .reveal .slides section .fragment.zoom-in.visible {
  73. -webkit-transform: none;
  74. transform: none; }
  75. .reveal .slides section .fragment.fade-out {
  76. opacity: 1;
  77. visibility: visible; }
  78. .reveal .slides section .fragment.fade-out.visible {
  79. opacity: 0;
  80. visibility: hidden; }
  81. .reveal .slides section .fragment.semi-fade-out {
  82. opacity: 1;
  83. visibility: visible; }
  84. .reveal .slides section .fragment.semi-fade-out.visible {
  85. opacity: 0.5;
  86. visibility: visible; }
  87. .reveal .slides section .fragment.strike {
  88. opacity: 1;
  89. visibility: visible; }
  90. .reveal .slides section .fragment.strike.visible {
  91. text-decoration: line-through; }
  92. .reveal .slides section .fragment.fade-up {
  93. -webkit-transform: translate(0, 20%);
  94. transform: translate(0, 20%); }
  95. .reveal .slides section .fragment.fade-up.visible {
  96. -webkit-transform: translate(0, 0);
  97. transform: translate(0, 0); }
  98. .reveal .slides section .fragment.fade-down {
  99. -webkit-transform: translate(0, -20%);
  100. transform: translate(0, -20%); }
  101. .reveal .slides section .fragment.fade-down.visible {
  102. -webkit-transform: translate(0, 0);
  103. transform: translate(0, 0); }
  104. .reveal .slides section .fragment.fade-right {
  105. -webkit-transform: translate(-20%, 0);
  106. transform: translate(-20%, 0); }
  107. .reveal .slides section .fragment.fade-right.visible {
  108. -webkit-transform: translate(0, 0);
  109. transform: translate(0, 0); }
  110. .reveal .slides section .fragment.fade-left {
  111. -webkit-transform: translate(20%, 0);
  112. transform: translate(20%, 0); }
  113. .reveal .slides section .fragment.fade-left.visible {
  114. -webkit-transform: translate(0, 0);
  115. transform: translate(0, 0); }
  116. .reveal .slides section .fragment.current-visible {
  117. opacity: 0;
  118. visibility: hidden; }
  119. .reveal .slides section .fragment.current-visible.current-fragment {
  120. opacity: 1;
  121. visibility: visible; }
  122. .reveal .slides section .fragment.highlight-red,
  123. .reveal .slides section .fragment.highlight-current-red,
  124. .reveal .slides section .fragment.highlight-green,
  125. .reveal .slides section .fragment.highlight-current-green,
  126. .reveal .slides section .fragment.highlight-blue,
  127. .reveal .slides section .fragment.highlight-current-blue {
  128. opacity: 1;
  129. visibility: visible; }
  130. .reveal .slides section .fragment.highlight-red.visible {
  131. color: #ff2c2d; }
  132. .reveal .slides section .fragment.highlight-green.visible {
  133. color: #17ff2e; }
  134. .reveal .slides section .fragment.highlight-blue.visible {
  135. color: #1b91ff; }
  136. .reveal .slides section .fragment.highlight-current-red.current-fragment {
  137. color: #ff2c2d; }
  138. .reveal .slides section .fragment.highlight-current-green.current-fragment {
  139. color: #17ff2e; }
  140. .reveal .slides section .fragment.highlight-current-blue.current-fragment {
  141. color: #1b91ff; }
  142. /*********************************************
  143. * DEFAULT ELEMENT STYLES
  144. *********************************************/
  145. /* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */
  146. .reveal:after {
  147. content: '';
  148. font-style: italic; }
  149. .reveal iframe {
  150. z-index: 1; }
  151. /** Prevents layering issues in certain browser/transition combinations */
  152. .reveal a {
  153. position: relative; }
  154. .reveal .stretch {
  155. max-width: none;
  156. max-height: none; }
  157. .reveal pre.stretch code {
  158. height: 100%;
  159. max-height: 100%;
  160. box-sizing: border-box; }
  161. /*********************************************
  162. * CONTROLS
  163. *********************************************/
  164. .reveal .controls {
  165. display: none;
  166. position: fixed;
  167. width: 110px;
  168. height: 110px;
  169. z-index: 30;
  170. right: 10px;
  171. bottom: 10px;
  172. -webkit-user-select: none; }
  173. .reveal .controls button {
  174. padding: 0;
  175. position: absolute;
  176. opacity: 0.05;
  177. width: 0;
  178. height: 0;
  179. background-color: transparent;
  180. border: 12px solid transparent;
  181. -webkit-transform: scale(0.9999);
  182. transform: scale(0.9999);
  183. -webkit-transition: all 0.2s ease;
  184. transition: all 0.2s ease;
  185. -webkit-appearance: none;
  186. -webkit-tap-highlight-color: transparent; }
  187. .reveal .controls .enabled {
  188. opacity: 0.7;
  189. cursor: pointer; }
  190. .reveal .controls .enabled:active {
  191. margin-top: 1px; }
  192. .reveal .controls .navigate-left {
  193. top: 42px;
  194. border-right-width: 22px;
  195. border-right-color: #000; }
  196. .reveal .controls .navigate-left.fragmented {
  197. opacity: 0.3; }
  198. .reveal .controls .navigate-right {
  199. left: 74px;
  200. top: 42px;
  201. border-left-width: 22px;
  202. border-left-color: #000; }
  203. .reveal .controls .navigate-right.fragmented {
  204. opacity: 0.3; }
  205. .reveal .controls .navigate-up {
  206. left: 42px;
  207. border-bottom-width: 22px;
  208. border-bottom-color: #000; }
  209. .reveal .controls .navigate-up.fragmented {
  210. opacity: 0.3; }
  211. .reveal .controls .navigate-down {
  212. left: 42px;
  213. top: 74px;
  214. border-top-width: 22px;
  215. border-top-color: #000; }
  216. .reveal .controls .navigate-down.fragmented {
  217. opacity: 0.3; }
  218. /*********************************************
  219. * PROGRESS BAR
  220. *********************************************/
  221. .reveal .progress {
  222. position: fixed;
  223. display: none;
  224. height: 3px;
  225. width: 100%;
  226. bottom: 0;
  227. left: 0;
  228. z-index: 10;
  229. background-color: rgba(0, 0, 0, 0.2); }
  230. .reveal .progress:after {
  231. content: '';
  232. display: block;
  233. position: absolute;
  234. height: 20px;
  235. width: 100%;
  236. top: -20px; }
  237. .reveal .progress span {
  238. display: block;
  239. height: 100%;
  240. width: 0px;
  241. background-color: #000;
  242. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  243. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  244. /*********************************************
  245. * SLIDE NUMBER
  246. *********************************************/
  247. .reveal .slide-number {
  248. position: fixed;
  249. display: block;
  250. right: 8px;
  251. bottom: 8px;
  252. z-index: 31;
  253. font-family: Helvetica, sans-serif;
  254. font-size: 12px;
  255. line-height: 1;
  256. color: #fff;
  257. background-color: rgba(0, 0, 0, 0.4);
  258. padding: 5px; }
  259. .reveal .slide-number-delimiter {
  260. margin: 0 3px; }
  261. /*********************************************
  262. * SLIDES
  263. *********************************************/
  264. .reveal {
  265. position: relative;
  266. width: 100%;
  267. height: 100%;
  268. overflow: hidden;
  269. -ms-touch-action: none;
  270. touch-action: none; }
  271. .reveal .slides {
  272. position: absolute;
  273. width: 100%;
  274. height: 100%;
  275. top: 0;
  276. right: 0;
  277. bottom: 0;
  278. left: 0;
  279. margin: auto;
  280. overflow: visible;
  281. z-index: 1;
  282. text-align: center;
  283. -webkit-perspective: 600px;
  284. perspective: 600px;
  285. -webkit-perspective-origin: 50% 40%;
  286. perspective-origin: 50% 40%; }
  287. .reveal .slides > section {
  288. -ms-perspective: 600px; }
  289. .reveal .slides > section,
  290. .reveal .slides > section > section {
  291. display: none;
  292. position: absolute;
  293. width: 100%;
  294. padding: 20px 0px;
  295. z-index: 10;
  296. -webkit-transform-style: preserve-3d;
  297. transform-style: preserve-3d;
  298. -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  299. transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  300. /* Global transition speed settings */
  301. .reveal[data-transition-speed="fast"] .slides section {
  302. -webkit-transition-duration: 400ms;
  303. transition-duration: 400ms; }
  304. .reveal[data-transition-speed="slow"] .slides section {
  305. -webkit-transition-duration: 1200ms;
  306. transition-duration: 1200ms; }
  307. /* Slide-specific transition speed overrides */
  308. .reveal .slides section[data-transition-speed="fast"] {
  309. -webkit-transition-duration: 400ms;
  310. transition-duration: 400ms; }
  311. .reveal .slides section[data-transition-speed="slow"] {
  312. -webkit-transition-duration: 1200ms;
  313. transition-duration: 1200ms; }
  314. .reveal .slides > section.stack {
  315. padding-top: 0;
  316. padding-bottom: 0; }
  317. .reveal .slides > section.present,
  318. .reveal .slides > section > section.present {
  319. display: block;
  320. z-index: 11;
  321. opacity: 1; }
  322. .reveal.center,
  323. .reveal.center .slides,
  324. .reveal.center .slides section {
  325. min-height: 0 !important; }
  326. /* Don't allow interaction with invisible slides */
  327. .reveal .slides > section.future,
  328. .reveal .slides > section > section.future,
  329. .reveal .slides > section.past,
  330. .reveal .slides > section > section.past {
  331. pointer-events: none; }
  332. .reveal.overview .slides > section,
  333. .reveal.overview .slides > section > section {
  334. pointer-events: auto; }
  335. .reveal .slides > section.past,
  336. .reveal .slides > section.future,
  337. .reveal .slides > section > section.past,
  338. .reveal .slides > section > section.future {
  339. opacity: 0; }
  340. /*********************************************
  341. * Mixins for readability of transitions
  342. *********************************************/
  343. /*********************************************
  344. * SLIDE TRANSITION
  345. * Aliased 'linear' for backwards compatibility
  346. *********************************************/
  347. .reveal.slide section {
  348. -webkit-backface-visibility: hidden;
  349. backface-visibility: hidden; }
  350. .reveal .slides > section[data-transition=slide].past,
  351. .reveal .slides > section[data-transition~=slide-out].past,
  352. .reveal.slide .slides > section:not([data-transition]).past {
  353. -webkit-transform: translate(-150%, 0);
  354. transform: translate(-150%, 0); }
  355. .reveal .slides > section[data-transition=slide].future,
  356. .reveal .slides > section[data-transition~=slide-in].future,
  357. .reveal.slide .slides > section:not([data-transition]).future {
  358. -webkit-transform: translate(150%, 0);
  359. transform: translate(150%, 0); }
  360. .reveal .slides > section > section[data-transition=slide].past,
  361. .reveal .slides > section > section[data-transition~=slide-out].past,
  362. .reveal.slide .slides > section > section:not([data-transition]).past {
  363. -webkit-transform: translate(0, -150%);
  364. transform: translate(0, -150%); }
  365. .reveal .slides > section > section[data-transition=slide].future,
  366. .reveal .slides > section > section[data-transition~=slide-in].future,
  367. .reveal.slide .slides > section > section:not([data-transition]).future {
  368. -webkit-transform: translate(0, 150%);
  369. transform: translate(0, 150%); }
  370. .reveal.linear section {
  371. -webkit-backface-visibility: hidden;
  372. backface-visibility: hidden; }
  373. .reveal .slides > section[data-transition=linear].past,
  374. .reveal .slides > section[data-transition~=linear-out].past,
  375. .reveal.linear .slides > section:not([data-transition]).past {
  376. -webkit-transform: translate(-150%, 0);
  377. transform: translate(-150%, 0); }
  378. .reveal .slides > section[data-transition=linear].future,
  379. .reveal .slides > section[data-transition~=linear-in].future,
  380. .reveal.linear .slides > section:not([data-transition]).future {
  381. -webkit-transform: translate(150%, 0);
  382. transform: translate(150%, 0); }
  383. .reveal .slides > section > section[data-transition=linear].past,
  384. .reveal .slides > section > section[data-transition~=linear-out].past,
  385. .reveal.linear .slides > section > section:not([data-transition]).past {
  386. -webkit-transform: translate(0, -150%);
  387. transform: translate(0, -150%); }
  388. .reveal .slides > section > section[data-transition=linear].future,
  389. .reveal .slides > section > section[data-transition~=linear-in].future,
  390. .reveal.linear .slides > section > section:not([data-transition]).future {
  391. -webkit-transform: translate(0, 150%);
  392. transform: translate(0, 150%); }
  393. /*********************************************
  394. * CONVEX TRANSITION
  395. * Aliased 'default' for backwards compatibility
  396. *********************************************/
  397. .reveal .slides > section[data-transition=default].past,
  398. .reveal .slides > section[data-transition~=default-out].past,
  399. .reveal.default .slides > section:not([data-transition]).past {
  400. -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
  401. transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }
  402. .reveal .slides > section[data-transition=default].future,
  403. .reveal .slides > section[data-transition~=default-in].future,
  404. .reveal.default .slides > section:not([data-transition]).future {
  405. -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
  406. transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }
  407. .reveal .slides > section > section[data-transition=default].past,
  408. .reveal .slides > section > section[data-transition~=default-out].past,
  409. .reveal.default .slides > section > section:not([data-transition]).past {
  410. -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
  411. transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }
  412. .reveal .slides > section > section[data-transition=default].future,
  413. .reveal .slides > section > section[data-transition~=default-in].future,
  414. .reveal.default .slides > section > section:not([data-transition]).future {
  415. -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
  416. transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }
  417. .reveal .slides > section[data-transition=convex].past,
  418. .reveal .slides > section[data-transition~=convex-out].past,
  419. .reveal.convex .slides > section:not([data-transition]).past {
  420. -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
  421. transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }
  422. .reveal .slides > section[data-transition=convex].future,
  423. .reveal .slides > section[data-transition~=convex-in].future,
  424. .reveal.convex .slides > section:not([data-transition]).future {
  425. -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
  426. transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }
  427. .reveal .slides > section > section[data-transition=convex].past,
  428. .reveal .slides > section > section[data-transition~=convex-out].past,
  429. .reveal.convex .slides > section > section:not([data-transition]).past {
  430. -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
  431. transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }
  432. .reveal .slides > section > section[data-transition=convex].future,
  433. .reveal .slides > section > section[data-transition~=convex-in].future,
  434. .reveal.convex .slides > section > section:not([data-transition]).future {
  435. -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
  436. transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }
  437. /*********************************************
  438. * CONCAVE TRANSITION
  439. *********************************************/
  440. .reveal .slides > section[data-transition=concave].past,
  441. .reveal .slides > section[data-transition~=concave-out].past,
  442. .reveal.concave .slides > section:not([data-transition]).past {
  443. -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
  444. transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }
  445. .reveal .slides > section[data-transition=concave].future,
  446. .reveal .slides > section[data-transition~=concave-in].future,
  447. .reveal.concave .slides > section:not([data-transition]).future {
  448. -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
  449. transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }
  450. .reveal .slides > section > section[data-transition=concave].past,
  451. .reveal .slides > section > section[data-transition~=concave-out].past,
  452. .reveal.concave .slides > section > section:not([data-transition]).past {
  453. -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
  454. transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }
  455. .reveal .slides > section > section[data-transition=concave].future,
  456. .reveal .slides > section > section[data-transition~=concave-in].future,
  457. .reveal.concave .slides > section > section:not([data-transition]).future {
  458. -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
  459. transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }
  460. /*********************************************
  461. * ZOOM TRANSITION
  462. *********************************************/
  463. .reveal .slides section[data-transition=zoom],
  464. .reveal.zoom .slides section:not([data-transition]) {
  465. -webkit-transition-timing-function: ease;
  466. transition-timing-function: ease; }
  467. .reveal .slides > section[data-transition=zoom].past,
  468. .reveal .slides > section[data-transition~=zoom-out].past,
  469. .reveal.zoom .slides > section:not([data-transition]).past {
  470. visibility: hidden;
  471. -webkit-transform: scale(16);
  472. transform: scale(16); }
  473. .reveal .slides > section[data-transition=zoom].future,
  474. .reveal .slides > section[data-transition~=zoom-in].future,
  475. .reveal.zoom .slides > section:not([data-transition]).future {
  476. visibility: hidden;
  477. -webkit-transform: scale(0.2);
  478. transform: scale(0.2); }
  479. .reveal .slides > section > section[data-transition=zoom].past,
  480. .reveal .slides > section > section[data-transition~=zoom-out].past,
  481. .reveal.zoom .slides > section > section:not([data-transition]).past {
  482. -webkit-transform: translate(0, -150%);
  483. transform: translate(0, -150%); }
  484. .reveal .slides > section > section[data-transition=zoom].future,
  485. .reveal .slides > section > section[data-transition~=zoom-in].future,
  486. .reveal.zoom .slides > section > section:not([data-transition]).future {
  487. -webkit-transform: translate(0, 150%);
  488. transform: translate(0, 150%); }
  489. /*********************************************
  490. * CUBE TRANSITION
  491. *********************************************/
  492. .reveal.cube .slides {
  493. -webkit-perspective: 1300px;
  494. perspective: 1300px; }
  495. .reveal.cube .slides section {
  496. padding: 30px;
  497. min-height: 700px;
  498. -webkit-backface-visibility: hidden;
  499. backface-visibility: hidden;
  500. box-sizing: border-box; }
  501. .reveal.center.cube .slides section {
  502. min-height: 0; }
  503. .reveal.cube .slides section:not(.stack):before {
  504. content: '';
  505. position: absolute;
  506. display: block;
  507. width: 100%;
  508. height: 100%;
  509. left: 0;
  510. top: 0;
  511. background: rgba(0, 0, 0, 0.1);
  512. border-radius: 4px;
  513. -webkit-transform: translateZ(-20px);
  514. transform: translateZ(-20px); }
  515. .reveal.cube .slides section:not(.stack):after {
  516. content: '';
  517. position: absolute;
  518. display: block;
  519. width: 90%;
  520. height: 30px;
  521. left: 5%;
  522. bottom: 0;
  523. background: none;
  524. z-index: 1;
  525. border-radius: 4px;
  526. box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);
  527. -webkit-transform: translateZ(-90px) rotateX(65deg);
  528. transform: translateZ(-90px) rotateX(65deg); }
  529. .reveal.cube .slides > section.stack {
  530. padding: 0;
  531. background: none; }
  532. .reveal.cube .slides > section.past {
  533. -webkit-transform-origin: 100% 0%;
  534. transform-origin: 100% 0%;
  535. -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
  536. transform: translate3d(-100%, 0, 0) rotateY(-90deg); }
  537. .reveal.cube .slides > section.future {
  538. -webkit-transform-origin: 0% 0%;
  539. transform-origin: 0% 0%;
  540. -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);
  541. transform: translate3d(100%, 0, 0) rotateY(90deg); }
  542. .reveal.cube .slides > section > section.past {
  543. -webkit-transform-origin: 0% 100%;
  544. transform-origin: 0% 100%;
  545. -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);
  546. transform: translate3d(0, -100%, 0) rotateX(90deg); }
  547. .reveal.cube .slides > section > section.future {
  548. -webkit-transform-origin: 0% 0%;
  549. transform-origin: 0% 0%;
  550. -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);
  551. transform: translate3d(0, 100%, 0) rotateX(-90deg); }
  552. /*********************************************
  553. * PAGE TRANSITION
  554. *********************************************/
  555. .reveal.page .slides {
  556. -webkit-perspective-origin: 0% 50%;
  557. perspective-origin: 0% 50%;
  558. -webkit-perspective: 3000px;
  559. perspective: 3000px; }
  560. .reveal.page .slides section {
  561. padding: 30px;
  562. min-height: 700px;
  563. box-sizing: border-box; }
  564. .reveal.page .slides section.past {
  565. z-index: 12; }
  566. .reveal.page .slides section:not(.stack):before {
  567. content: '';
  568. position: absolute;
  569. display: block;
  570. width: 100%;
  571. height: 100%;
  572. left: 0;
  573. top: 0;
  574. background: rgba(0, 0, 0, 0.1);
  575. -webkit-transform: translateZ(-20px);
  576. transform: translateZ(-20px); }
  577. .reveal.page .slides section:not(.stack):after {
  578. content: '';
  579. position: absolute;
  580. display: block;
  581. width: 90%;
  582. height: 30px;
  583. left: 5%;
  584. bottom: 0;
  585. background: none;
  586. z-index: 1;
  587. border-radius: 4px;
  588. box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);
  589. -webkit-transform: translateZ(-90px) rotateX(65deg); }
  590. .reveal.page .slides > section.stack {
  591. padding: 0;
  592. background: none; }
  593. .reveal.page .slides > section.past {
  594. -webkit-transform-origin: 0% 0%;
  595. transform-origin: 0% 0%;
  596. -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
  597. transform: translate3d(-40%, 0, 0) rotateY(-80deg); }
  598. .reveal.page .slides > section.future {
  599. -webkit-transform-origin: 100% 0%;
  600. transform-origin: 100% 0%;
  601. -webkit-transform: translate3d(0, 0, 0);
  602. transform: translate3d(0, 0, 0); }
  603. .reveal.page .slides > section > section.past {
  604. -webkit-transform-origin: 0% 0%;
  605. transform-origin: 0% 0%;
  606. -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);
  607. transform: translate3d(0, -40%, 0) rotateX(80deg); }
  608. .reveal.page .slides > section > section.future {
  609. -webkit-transform-origin: 0% 100%;
  610. transform-origin: 0% 100%;
  611. -webkit-transform: translate3d(0, 0, 0);
  612. transform: translate3d(0, 0, 0); }
  613. /*********************************************
  614. * FADE TRANSITION
  615. *********************************************/
  616. .reveal .slides section[data-transition=fade],
  617. .reveal.fade .slides section:not([data-transition]),
  618. .reveal.fade .slides > section > section:not([data-transition]) {
  619. -webkit-transform: none;
  620. transform: none;
  621. -webkit-transition: opacity 0.5s;
  622. transition: opacity 0.5s; }
  623. .reveal.fade.overview .slides section,
  624. .reveal.fade.overview .slides > section > section {
  625. -webkit-transition: none;
  626. transition: none; }
  627. /*********************************************
  628. * NO TRANSITION
  629. *********************************************/
  630. .reveal .slides section[data-transition=none],
  631. .reveal.none .slides section:not([data-transition]) {
  632. -webkit-transform: none;
  633. transform: none;
  634. -webkit-transition: none;
  635. transition: none; }
  636. /*********************************************
  637. * PAUSED MODE
  638. *********************************************/
  639. .reveal .pause-overlay {
  640. position: absolute;
  641. top: 0;
  642. left: 0;
  643. width: 100%;
  644. height: 100%;
  645. background: black;
  646. visibility: hidden;
  647. opacity: 0;
  648. z-index: 100;
  649. -webkit-transition: all 1s ease;
  650. transition: all 1s ease; }
  651. .reveal.paused .pause-overlay {
  652. visibility: visible;
  653. opacity: 1; }
  654. /*********************************************
  655. * FALLBACK
  656. *********************************************/
  657. .no-transforms {
  658. overflow-y: auto; }
  659. .no-transforms .reveal .slides {
  660. position: relative;
  661. width: 80%;
  662. height: auto !important;
  663. top: 0;
  664. left: 50%;
  665. margin: 0;
  666. text-align: center; }
  667. .no-transforms .reveal .controls,
  668. .no-transforms .reveal .progress {
  669. display: none !important; }
  670. .no-transforms .reveal .slides section {
  671. display: block !important;
  672. opacity: 1 !important;
  673. position: relative !important;
  674. height: auto;
  675. min-height: 0;
  676. top: 0;
  677. left: -50%;
  678. margin: 70px 0;
  679. -webkit-transform: none;
  680. transform: none; }
  681. .no-transforms .reveal .slides section section {
  682. left: 0; }
  683. .reveal .no-transition,
  684. .reveal .no-transition * {
  685. -webkit-transition: none !important;
  686. transition: none !important; }
  687. /*********************************************
  688. * PER-SLIDE BACKGROUNDS
  689. *********************************************/
  690. .reveal .backgrounds {
  691. position: absolute;
  692. width: 100%;
  693. height: 100%;
  694. top: 0;
  695. left: 0;
  696. -webkit-perspective: 600px;
  697. perspective: 600px; }
  698. .reveal .slide-background {
  699. display: none;
  700. position: absolute;
  701. width: 100%;
  702. height: 100%;
  703. opacity: 0;
  704. visibility: hidden;
  705. background-color: transparent;
  706. background-position: 50% 50%;
  707. background-repeat: no-repeat;
  708. background-size: cover;
  709. -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  710. transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  711. .reveal .slide-background.stack {
  712. display: block; }
  713. .reveal .slide-background.present {
  714. opacity: 1;
  715. visibility: visible; }
  716. .print-pdf .reveal .slide-background {
  717. opacity: 1 !important;
  718. visibility: visible !important; }
  719. /* Video backgrounds */
  720. .reveal .slide-background video {
  721. position: absolute;
  722. width: 100%;
  723. height: 100%;
  724. max-width: none;
  725. max-height: none;
  726. top: 0;
  727. left: 0; }
  728. /* Immediate transition style */
  729. .reveal[data-background-transition=none] > .backgrounds .slide-background,
  730. .reveal > .backgrounds .slide-background[data-background-transition=none] {
  731. -webkit-transition: none;
  732. transition: none; }
  733. /* Slide */
  734. .reveal[data-background-transition=slide] > .backgrounds .slide-background,
  735. .reveal > .backgrounds .slide-background[data-background-transition=slide] {
  736. opacity: 1;
  737. -webkit-backface-visibility: hidden;
  738. backface-visibility: hidden; }
  739. .reveal[data-background-transition=slide] > .backgrounds .slide-background.past,
  740. .reveal > .backgrounds .slide-background.past[data-background-transition=slide] {
  741. -webkit-transform: translate(-100%, 0);
  742. transform: translate(-100%, 0); }
  743. .reveal[data-background-transition=slide] > .backgrounds .slide-background.future,
  744. .reveal > .backgrounds .slide-background.future[data-background-transition=slide] {
  745. -webkit-transform: translate(100%, 0);
  746. transform: translate(100%, 0); }
  747. .reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,
  748. .reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {
  749. -webkit-transform: translate(0, -100%);
  750. transform: translate(0, -100%); }
  751. .reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,
  752. .reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {
  753. -webkit-transform: translate(0, 100%);
  754. transform: translate(0, 100%); }
  755. /* Convex */
  756. .reveal[data-background-transition=convex] > .backgrounds .slide-background.past,
  757. .reveal > .backgrounds .slide-background.past[data-background-transition=convex] {
  758. opacity: 0;
  759. -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
  760. transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }
  761. .reveal[data-background-transition=convex] > .backgrounds .slide-background.future,
  762. .reveal > .backgrounds .slide-background.future[data-background-transition=convex] {
  763. opacity: 0;
  764. -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
  765. transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }
  766. .reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,
  767. .reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {
  768. opacity: 0;
  769. -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
  770. transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }
  771. .reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,
  772. .reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {
  773. opacity: 0;
  774. -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
  775. transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }
  776. /* Concave */
  777. .reveal[data-background-transition=concave] > .backgrounds .slide-background.past,
  778. .reveal > .backgrounds .slide-background.past[data-background-transition=concave] {
  779. opacity: 0;
  780. -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
  781. transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }
  782. .reveal[data-background-transition=concave] > .backgrounds .slide-background.future,
  783. .reveal > .backgrounds .slide-background.future[data-background-transition=concave] {
  784. opacity: 0;
  785. -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
  786. transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }
  787. .reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,
  788. .reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {
  789. opacity: 0;
  790. -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
  791. transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }
  792. .reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,
  793. .reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {
  794. opacity: 0;
  795. -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
  796. transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }
  797. /* Zoom */
  798. .reveal[data-background-transition=zoom] > .backgrounds .slide-background,
  799. .reveal > .backgrounds .slide-background[data-background-transition=zoom] {
  800. -webkit-transition-timing-function: ease;
  801. transition-timing-function: ease; }
  802. .reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,
  803. .reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {
  804. opacity: 0;
  805. visibility: hidden;
  806. -webkit-transform: scale(16);
  807. transform: scale(16); }
  808. .reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,
  809. .reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {
  810. opacity: 0;
  811. visibility: hidden;
  812. -webkit-transform: scale(0.2);
  813. transform: scale(0.2); }
  814. .reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,
  815. .reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {
  816. opacity: 0;
  817. visibility: hidden;
  818. -webkit-transform: scale(16);
  819. transform: scale(16); }
  820. .reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,
  821. .reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {
  822. opacity: 0;
  823. visibility: hidden;
  824. -webkit-transform: scale(0.2);
  825. transform: scale(0.2); }
  826. /* Global transition speed settings */
  827. .reveal[data-transition-speed="fast"] > .backgrounds .slide-background {
  828. -webkit-transition-duration: 400ms;
  829. transition-duration: 400ms; }
  830. .reveal[data-transition-speed="slow"] > .backgrounds .slide-background {
  831. -webkit-transition-duration: 1200ms;
  832. transition-duration: 1200ms; }
  833. /*********************************************
  834. * OVERVIEW
  835. *********************************************/
  836. .reveal.overview {
  837. -webkit-perspective-origin: 50% 50%;
  838. perspective-origin: 50% 50%;
  839. -webkit-perspective: 700px;
  840. perspective: 700px; }
  841. .reveal.overview .slides section {
  842. height: 100%;
  843. top: 0 !important;
  844. opacity: 1 !important;
  845. overflow: hidden;
  846. visibility: visible !important;
  847. cursor: pointer;
  848. box-sizing: border-box; }
  849. .reveal.overview .slides section:hover,
  850. .reveal.overview .slides section.present {
  851. outline: 10px solid rgba(150, 150, 150, 0.4);
  852. outline-offset: 10px; }
  853. .reveal.overview .slides section .fragment {
  854. opacity: 1;
  855. -webkit-transition: none;
  856. transition: none; }
  857. .reveal.overview .slides section:after,
  858. .reveal.overview .slides section:before {
  859. display: none !important; }
  860. .reveal.overview .slides > section.stack {
  861. padding: 0;
  862. top: 0 !important;
  863. background: none;
  864. outline: none;
  865. overflow: visible; }
  866. .reveal.overview .backgrounds {
  867. -webkit-perspective: inherit;
  868. perspective: inherit; }
  869. .reveal.overview .backgrounds .slide-background {
  870. opacity: 1;
  871. visibility: visible;
  872. outline: 10px solid rgba(150, 150, 150, 0.1);
  873. outline-offset: 10px; }
  874. .reveal.overview .slides section,
  875. .reveal.overview-deactivating .slides section {
  876. -webkit-transition: none;
  877. transition: none; }
  878. .reveal.overview .backgrounds .slide-background,
  879. .reveal.overview-deactivating .backgrounds .slide-background {
  880. -webkit-transition: none;
  881. transition: none; }
  882. .reveal.overview-animated .slides {
  883. -webkit-transition: -webkit-transform 0.4s ease;
  884. transition: transform 0.4s ease; }
  885. /*********************************************
  886. * RTL SUPPORT
  887. *********************************************/
  888. .reveal.rtl .slides,
  889. .reveal.rtl .slides h1,
  890. .reveal.rtl .slides h2,
  891. .reveal.rtl .slides h3,
  892. .reveal.rtl .slides h4,
  893. .reveal.rtl .slides h5,
  894. .reveal.rtl .slides h6 {
  895. direction: rtl;
  896. font-family: sans-serif; }
  897. .reveal.rtl pre,
  898. .reveal.rtl code {
  899. direction: ltr; }
  900. .reveal.rtl ol,
  901. .reveal.rtl ul {
  902. text-align: right; }
  903. .reveal.rtl .progress span {
  904. float: right; }
  905. /*********************************************
  906. * PARALLAX BACKGROUND
  907. *********************************************/
  908. .reveal.has-parallax-background .backgrounds {
  909. -webkit-transition: all 0.8s ease;
  910. transition: all 0.8s ease; }
  911. /* Global transition speed settings */
  912. .reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds {
  913. -webkit-transition-duration: 400ms;
  914. transition-duration: 400ms; }
  915. .reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds {
  916. -webkit-transition-duration: 1200ms;
  917. transition-duration: 1200ms; }
  918. /*********************************************
  919. * LINK PREVIEW OVERLAY
  920. *********************************************/
  921. .reveal .overlay {
  922. position: absolute;
  923. top: 0;
  924. left: 0;
  925. width: 100%;
  926. height: 100%;
  927. z-index: 1000;
  928. background: rgba(0, 0, 0, 0.9);
  929. opacity: 0;
  930. visibility: hidden;
  931. -webkit-transition: all 0.3s ease;
  932. transition: all 0.3s ease; }
  933. .reveal .overlay.visible {
  934. opacity: 1;
  935. visibility: visible; }
  936. .reveal .overlay .spinner {
  937. position: absolute;
  938. display: block;
  939. top: 50%;
  940. left: 50%;
  941. width: 32px;
  942. height: 32px;
  943. margin: -16px 0 0 -16px;
  944. z-index: 10;
  945. background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);
  946. visibility: visible;
  947. opacity: 0.6;
  948. -webkit-transition: all 0.3s ease;
  949. transition: all 0.3s ease; }
  950. .reveal .overlay header {
  951. position: absolute;
  952. left: 0;
  953. top: 0;
  954. width: 100%;
  955. height: 40px;
  956. z-index: 2;
  957. border-bottom: 1px solid #222; }
  958. .reveal .overlay header a {
  959. display: inline-block;
  960. width: 40px;
  961. height: 40px;
  962. padding: 0 10px;
  963. float: right;
  964. opacity: 0.6;
  965. box-sizing: border-box; }
  966. .reveal .overlay header a:hover {
  967. opacity: 1; }
  968. .reveal .overlay header a .icon {
  969. display: inline-block;
  970. width: 20px;
  971. height: 20px;
  972. background-position: 50% 50%;
  973. background-size: 100%;
  974. background-repeat: no-repeat; }
  975. .reveal .overlay header a.close .icon {
  976. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }
  977. .reveal .overlay header a.external .icon {
  978. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }
  979. .reveal .overlay .viewport {
  980. position: absolute;
  981. display: -webkit-box;
  982. display: -webkit-flex;
  983. display: -ms-flexbox;
  984. display: flex;
  985. top: 40px;
  986. right: 0;
  987. bottom: 0;
  988. left: 0; }
  989. .reveal .overlay.overlay-preview .viewport iframe {
  990. width: 100%;
  991. height: 100%;
  992. max-width: 100%;
  993. max-height: 100%;
  994. border: 0;
  995. opacity: 0;
  996. visibility: hidden;
  997. -webkit-transition: all 0.3s ease;
  998. transition: all 0.3s ease; }
  999. .reveal .overlay.overlay-preview.loaded .viewport iframe {
  1000. opacity: 1;
  1001. visibility: visible; }
  1002. .reveal .overlay.overlay-preview.loaded .spinner {
  1003. opacity: 0;
  1004. visibility: hidden;
  1005. -webkit-transform: scale(0.2);
  1006. transform: scale(0.2); }
  1007. .reveal .overlay.overlay-help .viewport {
  1008. overflow: auto;
  1009. color: #fff; }
  1010. .reveal .overlay.overlay-help .viewport .viewport-inner {
  1011. width: 600px;
  1012. margin: auto;
  1013. padding: 20px 20px 80px 20px;
  1014. text-align: center;
  1015. letter-spacing: normal; }
  1016. .reveal .overlay.overlay-help .viewport .viewport-inner .title {
  1017. font-size: 20px; }
  1018. .reveal .overlay.overlay-help .viewport .viewport-inner table {
  1019. border: 1px solid #fff;
  1020. border-collapse: collapse;
  1021. font-size: 16px; }
  1022. .reveal .overlay.overlay-help .viewport .viewport-inner table th,
  1023. .reveal .overlay.overlay-help .viewport .viewport-inner table td {
  1024. width: 200px;
  1025. padding: 14px;
  1026. border: 1px solid #fff;
  1027. vertical-align: middle; }
  1028. .reveal .overlay.overlay-help .viewport .viewport-inner table th {
  1029. padding-top: 20px;
  1030. padding-bottom: 20px; }
  1031. /*********************************************
  1032. * PLAYBACK COMPONENT
  1033. *********************************************/
  1034. .reveal .playback {
  1035. position: fixed;
  1036. left: 15px;
  1037. bottom: 20px;
  1038. z-index: 30;
  1039. cursor: pointer;
  1040. -webkit-transition: all 400ms ease;
  1041. transition: all 400ms ease; }
  1042. .reveal.overview .playback {
  1043. opacity: 0;
  1044. visibility: hidden; }
  1045. /*********************************************
  1046. * ROLLING LINKS
  1047. *********************************************/
  1048. .reveal .roll {
  1049. display: inline-block;
  1050. line-height: 1.2;
  1051. overflow: hidden;
  1052. vertical-align: top;
  1053. -webkit-perspective: 400px;
  1054. perspective: 400px;
  1055. -webkit-perspective-origin: 50% 50%;
  1056. perspective-origin: 50% 50%; }
  1057. .reveal .roll:hover {
  1058. background: none;
  1059. text-shadow: none; }
  1060. .reveal .roll span {
  1061. display: block;
  1062. position: relative;
  1063. padding: 0 2px;
  1064. pointer-events: none;
  1065. -webkit-transition: all 400ms ease;
  1066. transition: all 400ms ease;
  1067. -webkit-transform-origin: 50% 0%;
  1068. transform-origin: 50% 0%;
  1069. -webkit-transform-style: preserve-3d;
  1070. transform-style: preserve-3d;
  1071. -webkit-backface-visibility: hidden;
  1072. backface-visibility: hidden; }
  1073. .reveal .roll:hover span {
  1074. background: rgba(0, 0, 0, 0.5);
  1075. -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);
  1076. transform: translate3d(0px, 0px, -45px) rotateX(90deg); }
  1077. .reveal .roll span:after {
  1078. content: attr(data-title);
  1079. display: block;
  1080. position: absolute;
  1081. left: 0;
  1082. top: 0;
  1083. padding: 0 2px;
  1084. -webkit-backface-visibility: hidden;
  1085. backface-visibility: hidden;
  1086. -webkit-transform-origin: 50% 0%;
  1087. transform-origin: 50% 0%;
  1088. -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);
  1089. transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }
  1090. /*********************************************
  1091. * SPEAKER NOTES
  1092. *********************************************/
  1093. .reveal aside.notes {
  1094. display: none; }
  1095. .reveal .speaker-notes {
  1096. display: none;
  1097. position: absolute;
  1098. width: 70%;
  1099. max-height: 15%;
  1100. left: 15%;
  1101. bottom: 26px;
  1102. padding: 10px;
  1103. z-index: 1;
  1104. font-size: 18px;
  1105. line-height: 1.4;
  1106. color: #fff;
  1107. background-color: rgba(0, 0, 0, 0.5);
  1108. overflow: auto;
  1109. box-sizing: border-box;
  1110. text-align: left;
  1111. font-family: Helvetica, sans-serif;
  1112. -webkit-overflow-scrolling: touch; }
  1113. .reveal .speaker-notes.visible:not(:empty) {
  1114. display: block; }
  1115. @media screen and (max-width: 1024px) {
  1116. .reveal .speaker-notes {
  1117. font-size: 14px; } }
  1118. @media screen and (max-width: 600px) {
  1119. .reveal .speaker-notes {
  1120. width: 90%;
  1121. left: 5%; } }
  1122. /*********************************************
  1123. * ZOOM PLUGIN
  1124. *********************************************/
  1125. .zoomed .reveal *,
  1126. .zoomed .reveal *:before,
  1127. .zoomed .reveal *:after {
  1128. -webkit-backface-visibility: visible !important;
  1129. backface-visibility: visible !important; }
  1130. .zoomed .reveal .progress,
  1131. .zoomed .reveal .controls {
  1132. opacity: 0; }
  1133. .zoomed .reveal .roll span {
  1134. background: none; }
  1135. .zoomed .reveal .roll span:after {
  1136. visibility: hidden; }