reveal.scss 36 KB

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