reveal.scss 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319
  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. }