scateu.me-jekyll-theme 0.1.1 → 0.1.2

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