reveal.css 48 KB

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