reveal.css 47 KB

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