reveal.scss 35 KB

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