reveal.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332
  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. 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: 100%;
  847. top: 0 !important;
  848. opacity: 1 !important;
  849. overflow: hidden;
  850. visibility: visible !important;
  851. cursor: pointer;
  852. box-sizing: border-box; }
  853. .reveal.overview .slides section:hover,
  854. .reveal.overview .slides section.present {
  855. outline: 10px solid rgba(150, 150, 150, 0.4);
  856. outline-offset: 10px; }
  857. .reveal.overview .slides section .fragment {
  858. opacity: 1;
  859. -webkit-transition: none;
  860. transition: none; }
  861. .reveal.overview .slides section:after,
  862. .reveal.overview .slides section:before {
  863. display: none !important; }
  864. .reveal.overview .slides > section.stack {
  865. padding: 0;
  866. top: 0 !important;
  867. background: none;
  868. outline: none;
  869. overflow: visible; }
  870. .reveal.overview .backgrounds {
  871. -webkit-perspective: inherit;
  872. perspective: inherit; }
  873. .reveal.overview .backgrounds .slide-background {
  874. opacity: 1;
  875. visibility: visible;
  876. outline: 10px solid rgba(150, 150, 150, 0.1);
  877. outline-offset: 10px; }
  878. .reveal.overview .slides section,
  879. .reveal.overview-deactivating .slides section {
  880. -webkit-transition: none;
  881. transition: none; }
  882. .reveal.overview .backgrounds .slide-background,
  883. .reveal.overview-deactivating .backgrounds .slide-background {
  884. -webkit-transition: none;
  885. transition: none; }
  886. .reveal.overview-animated .slides {
  887. -webkit-transition: -webkit-transform 0.4s ease;
  888. transition: transform 0.4s ease; }
  889. /*********************************************
  890. * RTL SUPPORT
  891. *********************************************/
  892. .reveal.rtl .slides,
  893. .reveal.rtl .slides h1,
  894. .reveal.rtl .slides h2,
  895. .reveal.rtl .slides h3,
  896. .reveal.rtl .slides h4,
  897. .reveal.rtl .slides h5,
  898. .reveal.rtl .slides h6 {
  899. direction: rtl;
  900. font-family: sans-serif; }
  901. .reveal.rtl pre,
  902. .reveal.rtl code {
  903. direction: ltr; }
  904. .reveal.rtl ol,
  905. .reveal.rtl ul {
  906. text-align: right; }
  907. .reveal.rtl .progress span {
  908. float: right; }
  909. /*********************************************
  910. * PARALLAX BACKGROUND
  911. *********************************************/
  912. .reveal.has-parallax-background .backgrounds {
  913. -webkit-transition: all 0.8s ease;
  914. transition: all 0.8s ease; }
  915. /* Global transition speed settings */
  916. .reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds {
  917. -webkit-transition-duration: 400ms;
  918. transition-duration: 400ms; }
  919. .reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds {
  920. -webkit-transition-duration: 1200ms;
  921. transition-duration: 1200ms; }
  922. /*********************************************
  923. * LINK PREVIEW OVERLAY
  924. *********************************************/
  925. .reveal .overlay {
  926. position: absolute;
  927. top: 0;
  928. left: 0;
  929. width: 100%;
  930. height: 100%;
  931. z-index: 1000;
  932. background: rgba(0, 0, 0, 0.9);
  933. opacity: 0;
  934. visibility: hidden;
  935. -webkit-transition: all 0.3s ease;
  936. transition: all 0.3s ease; }
  937. .reveal .overlay.visible {
  938. opacity: 1;
  939. visibility: visible; }
  940. .reveal .overlay .spinner {
  941. position: absolute;
  942. display: block;
  943. top: 50%;
  944. left: 50%;
  945. width: 32px;
  946. height: 32px;
  947. margin: -16px 0 0 -16px;
  948. z-index: 10;
  949. 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);
  950. visibility: visible;
  951. opacity: 0.6;
  952. -webkit-transition: all 0.3s ease;
  953. transition: all 0.3s ease; }
  954. .reveal .overlay header {
  955. position: absolute;
  956. left: 0;
  957. top: 0;
  958. width: 100%;
  959. height: 40px;
  960. z-index: 2;
  961. border-bottom: 1px solid #222; }
  962. .reveal .overlay header a {
  963. display: inline-block;
  964. width: 40px;
  965. height: 40px;
  966. padding: 0 10px;
  967. float: right;
  968. opacity: 0.6;
  969. box-sizing: border-box; }
  970. .reveal .overlay header a:hover {
  971. opacity: 1; }
  972. .reveal .overlay header a .icon {
  973. display: inline-block;
  974. width: 20px;
  975. height: 20px;
  976. background-position: 50% 50%;
  977. background-size: 100%;
  978. background-repeat: no-repeat; }
  979. .reveal .overlay header a.close .icon {
  980. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }
  981. .reveal .overlay header a.external .icon {
  982. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }
  983. .reveal .overlay .viewport {
  984. position: absolute;
  985. display: -webkit-box;
  986. display: -webkit-flex;
  987. display: -ms-flexbox;
  988. display: flex;
  989. top: 40px;
  990. right: 0;
  991. bottom: 0;
  992. left: 0; }
  993. .reveal .overlay.overlay-preview .viewport iframe {
  994. width: 100%;
  995. height: 100%;
  996. max-width: 100%;
  997. max-height: 100%;
  998. border: 0;
  999. opacity: 0;
  1000. visibility: hidden;
  1001. -webkit-transition: all 0.3s ease;
  1002. transition: all 0.3s ease; }
  1003. .reveal .overlay.overlay-preview.loaded .viewport iframe {
  1004. opacity: 1;
  1005. visibility: visible; }
  1006. .reveal .overlay.overlay-preview.loaded .spinner {
  1007. opacity: 0;
  1008. visibility: hidden;
  1009. -webkit-transform: scale(0.2);
  1010. transform: scale(0.2); }
  1011. .reveal .overlay.overlay-help .viewport {
  1012. overflow: auto;
  1013. color: #fff; }
  1014. .reveal .overlay.overlay-help .viewport .viewport-inner {
  1015. width: 600px;
  1016. margin: auto;
  1017. padding: 20px 20px 80px 20px;
  1018. text-align: center;
  1019. letter-spacing: normal; }
  1020. .reveal .overlay.overlay-help .viewport .viewport-inner .title {
  1021. font-size: 20px; }
  1022. .reveal .overlay.overlay-help .viewport .viewport-inner table {
  1023. border: 1px solid #fff;
  1024. border-collapse: collapse;
  1025. font-size: 16px; }
  1026. .reveal .overlay.overlay-help .viewport .viewport-inner table th,
  1027. .reveal .overlay.overlay-help .viewport .viewport-inner table td {
  1028. width: 200px;
  1029. padding: 14px;
  1030. border: 1px solid #fff;
  1031. vertical-align: middle; }
  1032. .reveal .overlay.overlay-help .viewport .viewport-inner table th {
  1033. padding-top: 20px;
  1034. padding-bottom: 20px; }
  1035. /*********************************************
  1036. * PLAYBACK COMPONENT
  1037. *********************************************/
  1038. .reveal .playback {
  1039. position: fixed;
  1040. left: 15px;
  1041. bottom: 20px;
  1042. z-index: 30;
  1043. cursor: pointer;
  1044. -webkit-transition: all 400ms ease;
  1045. transition: all 400ms ease; }
  1046. .reveal.overview .playback {
  1047. opacity: 0;
  1048. visibility: hidden; }
  1049. /*********************************************
  1050. * ROLLING LINKS
  1051. *********************************************/
  1052. .reveal .roll {
  1053. display: inline-block;
  1054. line-height: 1.2;
  1055. overflow: hidden;
  1056. vertical-align: top;
  1057. -webkit-perspective: 400px;
  1058. perspective: 400px;
  1059. -webkit-perspective-origin: 50% 50%;
  1060. perspective-origin: 50% 50%; }
  1061. .reveal .roll:hover {
  1062. background: none;
  1063. text-shadow: none; }
  1064. .reveal .roll span {
  1065. display: block;
  1066. position: relative;
  1067. padding: 0 2px;
  1068. pointer-events: none;
  1069. -webkit-transition: all 400ms ease;
  1070. transition: all 400ms ease;
  1071. -webkit-transform-origin: 50% 0%;
  1072. transform-origin: 50% 0%;
  1073. -webkit-transform-style: preserve-3d;
  1074. transform-style: preserve-3d;
  1075. -webkit-backface-visibility: hidden;
  1076. backface-visibility: hidden; }
  1077. .reveal .roll:hover span {
  1078. background: rgba(0, 0, 0, 0.5);
  1079. -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);
  1080. transform: translate3d(0px, 0px, -45px) rotateX(90deg); }
  1081. .reveal .roll span:after {
  1082. content: attr(data-title);
  1083. display: block;
  1084. position: absolute;
  1085. left: 0;
  1086. top: 0;
  1087. padding: 0 2px;
  1088. -webkit-backface-visibility: hidden;
  1089. backface-visibility: hidden;
  1090. -webkit-transform-origin: 50% 0%;
  1091. transform-origin: 50% 0%;
  1092. -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);
  1093. transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }
  1094. /*********************************************
  1095. * SPEAKER NOTES
  1096. *********************************************/
  1097. .reveal aside.notes {
  1098. display: none; }
  1099. .reveal .speaker-notes {
  1100. display: none;
  1101. position: absolute;
  1102. width: 70%;
  1103. max-height: 15%;
  1104. left: 15%;
  1105. bottom: 26px;
  1106. padding: 10px;
  1107. z-index: 1;
  1108. font-size: 18px;
  1109. line-height: 1.4;
  1110. color: #fff;
  1111. background-color: rgba(0, 0, 0, 0.5);
  1112. overflow: auto;
  1113. box-sizing: border-box;
  1114. text-align: left;
  1115. font-family: Helvetica, sans-serif;
  1116. -webkit-overflow-scrolling: touch; }
  1117. .reveal .speaker-notes.visible:not(:empty) {
  1118. display: block; }
  1119. @media screen and (max-width: 1024px) {
  1120. .reveal .speaker-notes {
  1121. font-size: 14px; } }
  1122. @media screen and (max-width: 600px) {
  1123. .reveal .speaker-notes {
  1124. width: 90%;
  1125. left: 5%; } }
  1126. /*********************************************
  1127. * ZOOM PLUGIN
  1128. *********************************************/
  1129. .zoomed .reveal *,
  1130. .zoomed .reveal *:before,
  1131. .zoomed .reveal *:after {
  1132. -webkit-backface-visibility: visible !important;
  1133. backface-visibility: visible !important; }
  1134. .zoomed .reveal .progress,
  1135. .zoomed .reveal .controls {
  1136. opacity: 0; }
  1137. .zoomed .reveal .roll span {
  1138. background: none; }
  1139. .zoomed .reveal .roll span:after {
  1140. visibility: hidden; }