starterlog-theme 1.1.3 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -8
  3. data/_layouts/slide.html +105 -0
  4. data/_pages/profile/index.html +1 -1
  5. data/_pages/start/index.html +7 -2
  6. data/assets/modules/reveal.js/.gitignore +13 -0
  7. data/assets/modules/reveal.js/.travis.yml +5 -0
  8. data/assets/modules/reveal.js/CONTRIBUTING.md +23 -0
  9. data/assets/modules/reveal.js/Gruntfile.js +187 -0
  10. data/assets/modules/reveal.js/LICENSE +19 -0
  11. data/assets/modules/reveal.js/README.md +1185 -0
  12. data/assets/modules/reveal.js/bower.json +27 -0
  13. data/assets/modules/reveal.js/css/print/paper.css +203 -0
  14. data/assets/modules/reveal.js/css/print/pdf.css +171 -0
  15. data/assets/modules/reveal.js/css/reveal.css +1365 -0
  16. data/assets/modules/reveal.js/css/reveal.scss +1446 -0
  17. data/assets/modules/reveal.js/css/theme/README.md +21 -0
  18. data/assets/modules/reveal.js/css/theme/beige.css +296 -0
  19. data/assets/modules/reveal.js/css/theme/black.css +292 -0
  20. data/assets/modules/reveal.js/css/theme/blood.css +315 -0
  21. data/assets/modules/reveal.js/css/theme/league.css +298 -0
  22. data/assets/modules/reveal.js/css/theme/moon.css +296 -0
  23. data/assets/modules/reveal.js/css/theme/night.css +290 -0
  24. data/assets/modules/reveal.js/css/theme/serif.css +292 -0
  25. data/assets/modules/reveal.js/css/theme/simple.css +295 -0
  26. data/assets/modules/reveal.js/css/theme/sky.css +299 -0
  27. data/assets/modules/reveal.js/css/theme/solarized.css +296 -0
  28. data/assets/modules/reveal.js/css/theme/source/beige.scss +39 -0
  29. data/assets/modules/reveal.js/css/theme/source/black.scss +49 -0
  30. data/assets/modules/reveal.js/css/theme/source/blood.scss +78 -0
  31. data/assets/modules/reveal.js/css/theme/source/league.scss +34 -0
  32. data/assets/modules/reveal.js/css/theme/source/moon.scss +57 -0
  33. data/assets/modules/reveal.js/css/theme/source/night.scss +34 -0
  34. data/assets/modules/reveal.js/css/theme/source/serif.scss +35 -0
  35. data/assets/modules/reveal.js/css/theme/source/simple.scss +43 -0
  36. data/assets/modules/reveal.js/css/theme/source/sky.scss +46 -0
  37. data/assets/modules/reveal.js/css/theme/source/solarized.scss +63 -0
  38. data/assets/modules/reveal.js/css/theme/source/white.scss +49 -0
  39. data/assets/modules/reveal.js/css/theme/template/mixins.scss +29 -0
  40. data/assets/modules/reveal.js/css/theme/template/settings.scss +43 -0
  41. data/assets/modules/reveal.js/css/theme/template/theme.scss +352 -0
  42. data/assets/modules/reveal.js/css/theme/white.css +292 -0
  43. data/assets/modules/reveal.js/demo.html +410 -0
  44. data/assets/modules/reveal.js/index.html +50 -0
  45. data/assets/modules/reveal.js/js/reveal.js +4961 -0
  46. data/assets/modules/reveal.js/lib/css/zenburn.css +80 -0
  47. data/assets/modules/reveal.js/lib/font/league-gothic/LICENSE +2 -0
  48. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  49. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  50. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  51. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  52. data/assets/modules/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  53. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  54. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  55. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  56. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  57. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  58. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  59. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  60. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  61. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  62. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  63. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  64. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  65. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  66. data/assets/modules/reveal.js/lib/js/classList.js +2 -0
  67. data/assets/modules/reveal.js/lib/js/head.min.js +9 -0
  68. data/assets/modules/reveal.js/lib/js/html5shiv.js +7 -0
  69. data/assets/modules/reveal.js/package.json +45 -0
  70. data/assets/modules/reveal.js/plugin/highlight/highlight.js +78 -0
  71. data/assets/modules/reveal.js/plugin/markdown/example.html +129 -0
  72. data/assets/modules/reveal.js/plugin/markdown/example.md +31 -0
  73. data/assets/modules/reveal.js/plugin/markdown/markdown.js +411 -0
  74. data/assets/modules/reveal.js/plugin/markdown/marked.js +6 -0
  75. data/assets/modules/reveal.js/plugin/math/math.js +67 -0
  76. data/assets/modules/reveal.js/plugin/multiplex/client.js +13 -0
  77. data/assets/modules/reveal.js/plugin/multiplex/index.js +64 -0
  78. data/assets/modules/reveal.js/plugin/multiplex/master.js +31 -0
  79. data/assets/modules/reveal.js/plugin/multiplex/package.json +19 -0
  80. data/assets/modules/reveal.js/plugin/notes-server/client.js +65 -0
  81. data/assets/modules/reveal.js/plugin/notes-server/index.js +69 -0
  82. data/assets/modules/reveal.js/plugin/notes-server/notes.html +585 -0
  83. data/assets/modules/reveal.js/plugin/notes/notes.html +609 -0
  84. data/assets/modules/reveal.js/plugin/notes/notes.js +145 -0
  85. data/assets/modules/reveal.js/plugin/print-pdf/print-pdf.js +51 -0
  86. data/assets/modules/reveal.js/plugin/search/search.js +196 -0
  87. data/assets/modules/reveal.js/plugin/zoom-js/zoom.js +288 -0
  88. data/assets/modules/reveal.js/test/examples/assets/image1.png +0 -0
  89. data/assets/modules/reveal.js/test/examples/assets/image2.png +0 -0
  90. data/assets/modules/reveal.js/test/examples/barebones.html +41 -0
  91. data/assets/modules/reveal.js/test/examples/embedded-media.html +49 -0
  92. data/assets/modules/reveal.js/test/examples/math.html +185 -0
  93. data/assets/modules/reveal.js/test/examples/slide-backgrounds.html +144 -0
  94. data/assets/modules/reveal.js/test/examples/slide-transitions.html +101 -0
  95. data/assets/modules/reveal.js/test/qunit-1.12.0.css +244 -0
  96. data/assets/modules/reveal.js/test/qunit-1.12.0.js +2212 -0
  97. data/assets/modules/reveal.js/test/simple.md +12 -0
  98. data/assets/modules/reveal.js/test/test-markdown-element-attributes.html +134 -0
  99. data/assets/modules/reveal.js/test/test-markdown-element-attributes.js +46 -0
  100. data/assets/modules/reveal.js/test/test-markdown-external.html +36 -0
  101. data/assets/modules/reveal.js/test/test-markdown-external.js +24 -0
  102. data/assets/modules/reveal.js/test/test-markdown-options.html +41 -0
  103. data/assets/modules/reveal.js/test/test-markdown-options.js +26 -0
  104. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.html +128 -0
  105. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.js +47 -0
  106. data/assets/modules/reveal.js/test/test-markdown.html +52 -0
  107. data/assets/modules/reveal.js/test/test-markdown.js +15 -0
  108. data/assets/modules/reveal.js/test/test-pdf.html +83 -0
  109. data/assets/modules/reveal.js/test/test-pdf.js +15 -0
  110. data/assets/modules/reveal.js/test/test.html +86 -0
  111. data/assets/modules/reveal.js/test/test.js +597 -0
  112. metadata +117 -10
@@ -0,0 +1,1446 @@
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: inherit;
73
+ }
74
+ }
75
+
76
+ .reveal .slides section .fragment.grow {
77
+ opacity: 1;
78
+ visibility: inherit;
79
+
80
+ &.visible {
81
+ transform: scale( 1.3 );
82
+ }
83
+ }
84
+
85
+ .reveal .slides section .fragment.shrink {
86
+ opacity: 1;
87
+ visibility: inherit;
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: inherit;
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: inherit;
115
+
116
+ &.visible {
117
+ opacity: 0.5;
118
+ visibility: inherit;
119
+ }
120
+ }
121
+
122
+ .reveal .slides section .fragment.strike {
123
+ opacity: 1;
124
+ visibility: inherit;
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: inherit;
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: inherit;
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-stack($style) {
484
+ .reveal .slides section[data-transition=#{$style}].stack,
485
+ .reveal.#{$style} .slides section.stack {
486
+ @content;
487
+ }
488
+ }
489
+ @mixin transition-horizontal-past($style) {
490
+ .reveal .slides>section[data-transition=#{$style}].past,
491
+ .reveal .slides>section[data-transition~=#{$style}-out].past,
492
+ .reveal.#{$style} .slides>section:not([data-transition]).past {
493
+ @content;
494
+ }
495
+ }
496
+ @mixin transition-horizontal-future($style) {
497
+ .reveal .slides>section[data-transition=#{$style}].future,
498
+ .reveal .slides>section[data-transition~=#{$style}-in].future,
499
+ .reveal.#{$style} .slides>section:not([data-transition]).future {
500
+ @content;
501
+ }
502
+ }
503
+
504
+ @mixin transition-vertical-past($style) {
505
+ .reveal .slides>section>section[data-transition=#{$style}].past,
506
+ .reveal .slides>section>section[data-transition~=#{$style}-out].past,
507
+ .reveal.#{$style} .slides>section>section:not([data-transition]).past {
508
+ @content;
509
+ }
510
+ }
511
+ @mixin transition-vertical-future($style) {
512
+ .reveal .slides>section>section[data-transition=#{$style}].future,
513
+ .reveal .slides>section>section[data-transition~=#{$style}-in].future,
514
+ .reveal.#{$style} .slides>section>section:not([data-transition]).future {
515
+ @content;
516
+ }
517
+ }
518
+
519
+ /*********************************************
520
+ * SLIDE TRANSITION
521
+ * Aliased 'linear' for backwards compatibility
522
+ *********************************************/
523
+
524
+ @each $stylename in slide, linear {
525
+ .reveal.#{$stylename} section {
526
+ backface-visibility: hidden;
527
+ }
528
+ @include transition-horizontal-past(#{$stylename}) {
529
+ transform: translate(-150%, 0);
530
+ }
531
+ @include transition-horizontal-future(#{$stylename}) {
532
+ transform: translate(150%, 0);
533
+ }
534
+ @include transition-vertical-past(#{$stylename}) {
535
+ transform: translate(0, -150%);
536
+ }
537
+ @include transition-vertical-future(#{$stylename}) {
538
+ transform: translate(0, 150%);
539
+ }
540
+ }
541
+
542
+ /*********************************************
543
+ * CONVEX TRANSITION
544
+ * Aliased 'default' for backwards compatibility
545
+ *********************************************/
546
+
547
+ @each $stylename in default, convex {
548
+ @include transition-stack(#{$stylename}) {
549
+ transform-style: preserve-3d;
550
+ }
551
+
552
+ @include transition-horizontal-past(#{$stylename}) {
553
+ transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
554
+ }
555
+ @include transition-horizontal-future(#{$stylename}) {
556
+ transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
557
+ }
558
+ @include transition-vertical-past(#{$stylename}) {
559
+ transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
560
+ }
561
+ @include transition-vertical-future(#{$stylename}) {
562
+ transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
563
+ }
564
+ }
565
+
566
+ /*********************************************
567
+ * CONCAVE TRANSITION
568
+ *********************************************/
569
+
570
+ @include transition-stack(concave) {
571
+ transform-style: preserve-3d;
572
+ }
573
+
574
+ @include transition-horizontal-past(concave) {
575
+ transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
576
+ }
577
+ @include transition-horizontal-future(concave) {
578
+ transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
579
+ }
580
+ @include transition-vertical-past(concave) {
581
+ transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
582
+ }
583
+ @include transition-vertical-future(concave) {
584
+ transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
585
+ }
586
+
587
+
588
+ /*********************************************
589
+ * ZOOM TRANSITION
590
+ *********************************************/
591
+
592
+ @include transition-global(zoom) {
593
+ transition-timing-function: ease;
594
+ }
595
+ @include transition-horizontal-past(zoom) {
596
+ visibility: hidden;
597
+ transform: scale(16);
598
+ }
599
+ @include transition-horizontal-future(zoom) {
600
+ visibility: hidden;
601
+ transform: scale(0.2);
602
+ }
603
+ @include transition-vertical-past(zoom) {
604
+ transform: translate(0, -150%);
605
+ }
606
+ @include transition-vertical-future(zoom) {
607
+ transform: translate(0, 150%);
608
+ }
609
+
610
+
611
+ /*********************************************
612
+ * CUBE TRANSITION
613
+ *********************************************/
614
+
615
+ .reveal.cube .slides {
616
+ perspective: 1300px;
617
+ }
618
+
619
+ .reveal.cube .slides section {
620
+ padding: 30px;
621
+ min-height: 700px;
622
+ backface-visibility: hidden;
623
+ box-sizing: border-box;
624
+ transform-style: preserve-3d;
625
+ }
626
+ .reveal.center.cube .slides section {
627
+ min-height: 0;
628
+ }
629
+ .reveal.cube .slides section:not(.stack):before {
630
+ content: '';
631
+ position: absolute;
632
+ display: block;
633
+ width: 100%;
634
+ height: 100%;
635
+ left: 0;
636
+ top: 0;
637
+ background: rgba(0,0,0,0.1);
638
+ border-radius: 4px;
639
+ transform: translateZ( -20px );
640
+ }
641
+ .reveal.cube .slides section:not(.stack):after {
642
+ content: '';
643
+ position: absolute;
644
+ display: block;
645
+ width: 90%;
646
+ height: 30px;
647
+ left: 5%;
648
+ bottom: 0;
649
+ background: none;
650
+ z-index: 1;
651
+
652
+ border-radius: 4px;
653
+ box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
654
+ transform: translateZ(-90px) rotateX( 65deg );
655
+ }
656
+
657
+ .reveal.cube .slides>section.stack {
658
+ padding: 0;
659
+ background: none;
660
+ }
661
+
662
+ .reveal.cube .slides>section.past {
663
+ transform-origin: 100% 0%;
664
+ transform: translate3d(-100%, 0, 0) rotateY(-90deg);
665
+ }
666
+
667
+ .reveal.cube .slides>section.future {
668
+ transform-origin: 0% 0%;
669
+ transform: translate3d(100%, 0, 0) rotateY(90deg);
670
+ }
671
+
672
+ .reveal.cube .slides>section>section.past {
673
+ transform-origin: 0% 100%;
674
+ transform: translate3d(0, -100%, 0) rotateX(90deg);
675
+ }
676
+
677
+ .reveal.cube .slides>section>section.future {
678
+ transform-origin: 0% 0%;
679
+ transform: translate3d(0, 100%, 0) rotateX(-90deg);
680
+ }
681
+
682
+
683
+ /*********************************************
684
+ * PAGE TRANSITION
685
+ *********************************************/
686
+
687
+ .reveal.page .slides {
688
+ perspective-origin: 0% 50%;
689
+ perspective: 3000px;
690
+ }
691
+
692
+ .reveal.page .slides section {
693
+ padding: 30px;
694
+ min-height: 700px;
695
+ box-sizing: border-box;
696
+ transform-style: preserve-3d;
697
+ }
698
+ .reveal.page .slides section.past {
699
+ z-index: 12;
700
+ }
701
+ .reveal.page .slides section:not(.stack):before {
702
+ content: '';
703
+ position: absolute;
704
+ display: block;
705
+ width: 100%;
706
+ height: 100%;
707
+ left: 0;
708
+ top: 0;
709
+ background: rgba(0,0,0,0.1);
710
+ transform: translateZ( -20px );
711
+ }
712
+ .reveal.page .slides section:not(.stack):after {
713
+ content: '';
714
+ position: absolute;
715
+ display: block;
716
+ width: 90%;
717
+ height: 30px;
718
+ left: 5%;
719
+ bottom: 0;
720
+ background: none;
721
+ z-index: 1;
722
+
723
+ border-radius: 4px;
724
+ box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
725
+
726
+ -webkit-transform: translateZ(-90px) rotateX( 65deg );
727
+ }
728
+
729
+ .reveal.page .slides>section.stack {
730
+ padding: 0;
731
+ background: none;
732
+ }
733
+
734
+ .reveal.page .slides>section.past {
735
+ transform-origin: 0% 0%;
736
+ transform: translate3d(-40%, 0, 0) rotateY(-80deg);
737
+ }
738
+
739
+ .reveal.page .slides>section.future {
740
+ transform-origin: 100% 0%;
741
+ transform: translate3d(0, 0, 0);
742
+ }
743
+
744
+ .reveal.page .slides>section>section.past {
745
+ transform-origin: 0% 0%;
746
+ transform: translate3d(0, -40%, 0) rotateX(80deg);
747
+ }
748
+
749
+ .reveal.page .slides>section>section.future {
750
+ transform-origin: 0% 100%;
751
+ transform: translate3d(0, 0, 0);
752
+ }
753
+
754
+
755
+ /*********************************************
756
+ * FADE TRANSITION
757
+ *********************************************/
758
+
759
+ .reveal .slides section[data-transition=fade],
760
+ .reveal.fade .slides section:not([data-transition]),
761
+ .reveal.fade .slides>section>section:not([data-transition]) {
762
+ transform: none;
763
+ transition: opacity 0.5s;
764
+ }
765
+
766
+
767
+ .reveal.fade.overview .slides section,
768
+ .reveal.fade.overview .slides>section>section {
769
+ transition: none;
770
+ }
771
+
772
+
773
+ /*********************************************
774
+ * NO TRANSITION
775
+ *********************************************/
776
+
777
+ @include transition-global(none) {
778
+ transform: none;
779
+ transition: none;
780
+ }
781
+
782
+
783
+ /*********************************************
784
+ * PAUSED MODE
785
+ *********************************************/
786
+
787
+ .reveal .pause-overlay {
788
+ position: absolute;
789
+ top: 0;
790
+ left: 0;
791
+ width: 100%;
792
+ height: 100%;
793
+ background: black;
794
+ visibility: hidden;
795
+ opacity: 0;
796
+ z-index: 100;
797
+ transition: all 1s ease;
798
+ }
799
+ .reveal.paused .pause-overlay {
800
+ visibility: visible;
801
+ opacity: 1;
802
+ }
803
+
804
+
805
+ /*********************************************
806
+ * FALLBACK
807
+ *********************************************/
808
+
809
+ .no-transforms {
810
+ overflow-y: auto;
811
+ }
812
+
813
+ .no-transforms .reveal .slides {
814
+ position: relative;
815
+ width: 80%;
816
+ height: auto !important;
817
+ top: 0;
818
+ left: 50%;
819
+ margin: 0;
820
+ text-align: center;
821
+ }
822
+
823
+ .no-transforms .reveal .controls,
824
+ .no-transforms .reveal .progress {
825
+ display: none !important;
826
+ }
827
+
828
+ .no-transforms .reveal .slides section {
829
+ display: block !important;
830
+ opacity: 1 !important;
831
+ position: relative !important;
832
+ height: auto;
833
+ min-height: 0;
834
+ top: 0;
835
+ left: -50%;
836
+ margin: 70px 0;
837
+ transform: none;
838
+ }
839
+
840
+ .no-transforms .reveal .slides section section {
841
+ left: 0;
842
+ }
843
+
844
+ .reveal .no-transition,
845
+ .reveal .no-transition * {
846
+ transition: none !important;
847
+ }
848
+
849
+
850
+ /*********************************************
851
+ * PER-SLIDE BACKGROUNDS
852
+ *********************************************/
853
+
854
+ .reveal .backgrounds {
855
+ position: absolute;
856
+ width: 100%;
857
+ height: 100%;
858
+ top: 0;
859
+ left: 0;
860
+ perspective: 600px;
861
+ }
862
+ .reveal .slide-background {
863
+ display: none;
864
+ position: absolute;
865
+ width: 100%;
866
+ height: 100%;
867
+ opacity: 0;
868
+ visibility: hidden;
869
+
870
+ background-color: rgba( 0, 0, 0, 0 );
871
+ background-position: 50% 50%;
872
+ background-repeat: no-repeat;
873
+ background-size: cover;
874
+
875
+ transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
876
+ }
877
+
878
+ .reveal .slide-background.stack {
879
+ display: block;
880
+ }
881
+
882
+ .reveal .slide-background.present {
883
+ opacity: 1;
884
+ visibility: visible;
885
+ }
886
+
887
+ .print-pdf .reveal .slide-background {
888
+ opacity: 1 !important;
889
+ visibility: visible !important;
890
+ }
891
+
892
+ /* Video backgrounds */
893
+ .reveal .slide-background video {
894
+ position: absolute;
895
+ width: 100%;
896
+ height: 100%;
897
+ max-width: none;
898
+ max-height: none;
899
+ top: 0;
900
+ left: 0;
901
+ }
902
+
903
+ /* Immediate transition style */
904
+ .reveal[data-background-transition=none]>.backgrounds .slide-background,
905
+ .reveal>.backgrounds .slide-background[data-background-transition=none] {
906
+ transition: none;
907
+ }
908
+
909
+ /* Slide */
910
+ .reveal[data-background-transition=slide]>.backgrounds .slide-background,
911
+ .reveal>.backgrounds .slide-background[data-background-transition=slide] {
912
+ opacity: 1;
913
+ backface-visibility: hidden;
914
+ }
915
+ .reveal[data-background-transition=slide]>.backgrounds .slide-background.past,
916
+ .reveal>.backgrounds .slide-background.past[data-background-transition=slide] {
917
+ transform: translate(-100%, 0);
918
+ }
919
+ .reveal[data-background-transition=slide]>.backgrounds .slide-background.future,
920
+ .reveal>.backgrounds .slide-background.future[data-background-transition=slide] {
921
+ transform: translate(100%, 0);
922
+ }
923
+
924
+ .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,
925
+ .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {
926
+ transform: translate(0, -100%);
927
+ }
928
+ .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,
929
+ .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {
930
+ transform: translate(0, 100%);
931
+ }
932
+
933
+
934
+ /* Convex */
935
+ .reveal[data-background-transition=convex]>.backgrounds .slide-background.past,
936
+ .reveal>.backgrounds .slide-background.past[data-background-transition=convex] {
937
+ opacity: 0;
938
+ transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
939
+ }
940
+ .reveal[data-background-transition=convex]>.backgrounds .slide-background.future,
941
+ .reveal>.backgrounds .slide-background.future[data-background-transition=convex] {
942
+ opacity: 0;
943
+ transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
944
+ }
945
+
946
+ .reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,
947
+ .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {
948
+ opacity: 0;
949
+ transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
950
+ }
951
+ .reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,
952
+ .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {
953
+ opacity: 0;
954
+ transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
955
+ }
956
+
957
+
958
+ /* Concave */
959
+ .reveal[data-background-transition=concave]>.backgrounds .slide-background.past,
960
+ .reveal>.backgrounds .slide-background.past[data-background-transition=concave] {
961
+ opacity: 0;
962
+ transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
963
+ }
964
+ .reveal[data-background-transition=concave]>.backgrounds .slide-background.future,
965
+ .reveal>.backgrounds .slide-background.future[data-background-transition=concave] {
966
+ opacity: 0;
967
+ transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
968
+ }
969
+
970
+ .reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,
971
+ .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {
972
+ opacity: 0;
973
+ transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
974
+ }
975
+ .reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,
976
+ .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {
977
+ opacity: 0;
978
+ transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
979
+ }
980
+
981
+ /* Zoom */
982
+ .reveal[data-background-transition=zoom]>.backgrounds .slide-background,
983
+ .reveal>.backgrounds .slide-background[data-background-transition=zoom] {
984
+ transition-timing-function: ease;
985
+ }
986
+
987
+ .reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,
988
+ .reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {
989
+ opacity: 0;
990
+ visibility: hidden;
991
+ transform: scale(16);
992
+ }
993
+ .reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,
994
+ .reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {
995
+ opacity: 0;
996
+ visibility: hidden;
997
+ transform: scale(0.2);
998
+ }
999
+
1000
+ .reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,
1001
+ .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {
1002
+ opacity: 0;
1003
+ visibility: hidden;
1004
+ transform: scale(16);
1005
+ }
1006
+ .reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,
1007
+ .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {
1008
+ opacity: 0;
1009
+ visibility: hidden;
1010
+ transform: scale(0.2);
1011
+ }
1012
+
1013
+
1014
+ /* Global transition speed settings */
1015
+ .reveal[data-transition-speed="fast"]>.backgrounds .slide-background {
1016
+ transition-duration: 400ms;
1017
+ }
1018
+ .reveal[data-transition-speed="slow"]>.backgrounds .slide-background {
1019
+ transition-duration: 1200ms;
1020
+ }
1021
+
1022
+
1023
+ /*********************************************
1024
+ * OVERVIEW
1025
+ *********************************************/
1026
+
1027
+ .reveal.overview {
1028
+ perspective-origin: 50% 50%;
1029
+ perspective: 700px;
1030
+
1031
+ .slides {
1032
+ // Fixes overview rendering errors in FF48+, not applied to
1033
+ // other browsers since it degrades performance
1034
+ -moz-transform-style: preserve-3d;
1035
+ }
1036
+
1037
+ .slides section {
1038
+ height: 100%;
1039
+ top: 0 !important;
1040
+ opacity: 1 !important;
1041
+ overflow: hidden;
1042
+ visibility: visible !important;
1043
+ cursor: pointer;
1044
+ box-sizing: border-box;
1045
+ }
1046
+ .slides section:hover,
1047
+ .slides section.present {
1048
+ outline: 10px solid rgba(150,150,150,0.4);
1049
+ outline-offset: 10px;
1050
+ }
1051
+ .slides section .fragment {
1052
+ opacity: 1;
1053
+ transition: none;
1054
+ }
1055
+ .slides section:after,
1056
+ .slides section:before {
1057
+ display: none !important;
1058
+ }
1059
+ .slides>section.stack {
1060
+ padding: 0;
1061
+ top: 0 !important;
1062
+ background: none;
1063
+ outline: none;
1064
+ overflow: visible;
1065
+ }
1066
+
1067
+ .backgrounds {
1068
+ perspective: inherit;
1069
+
1070
+ // Fixes overview rendering errors in FF48+, not applied to
1071
+ // other browsers since it degrades performance
1072
+ -moz-transform-style: preserve-3d;
1073
+ }
1074
+
1075
+ .backgrounds .slide-background {
1076
+ opacity: 1;
1077
+ visibility: visible;
1078
+
1079
+ // This can't be applied to the slide itself in Safari
1080
+ outline: 10px solid rgba(150,150,150,0.1);
1081
+ outline-offset: 10px;
1082
+ }
1083
+ }
1084
+
1085
+ // Disable transitions transitions while we're activating
1086
+ // or deactivating the overview mode.
1087
+ .reveal.overview .slides section,
1088
+ .reveal.overview-deactivating .slides section {
1089
+ transition: none;
1090
+ }
1091
+
1092
+ .reveal.overview .backgrounds .slide-background,
1093
+ .reveal.overview-deactivating .backgrounds .slide-background {
1094
+ transition: none;
1095
+ }
1096
+
1097
+ .reveal.overview-animated .slides {
1098
+ transition: transform 0.4s ease;
1099
+ }
1100
+
1101
+
1102
+ /*********************************************
1103
+ * RTL SUPPORT
1104
+ *********************************************/
1105
+
1106
+ .reveal.rtl .slides,
1107
+ .reveal.rtl .slides h1,
1108
+ .reveal.rtl .slides h2,
1109
+ .reveal.rtl .slides h3,
1110
+ .reveal.rtl .slides h4,
1111
+ .reveal.rtl .slides h5,
1112
+ .reveal.rtl .slides h6 {
1113
+ direction: rtl;
1114
+ font-family: sans-serif;
1115
+ }
1116
+
1117
+ .reveal.rtl pre,
1118
+ .reveal.rtl code {
1119
+ direction: ltr;
1120
+ }
1121
+
1122
+ .reveal.rtl ol,
1123
+ .reveal.rtl ul {
1124
+ text-align: right;
1125
+ }
1126
+
1127
+ .reveal.rtl .progress span {
1128
+ float: right
1129
+ }
1130
+
1131
+ /*********************************************
1132
+ * PARALLAX BACKGROUND
1133
+ *********************************************/
1134
+
1135
+ .reveal.has-parallax-background .backgrounds {
1136
+ transition: all 0.8s ease;
1137
+ }
1138
+
1139
+ /* Global transition speed settings */
1140
+ .reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds {
1141
+ transition-duration: 400ms;
1142
+ }
1143
+ .reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds {
1144
+ transition-duration: 1200ms;
1145
+ }
1146
+
1147
+
1148
+ /*********************************************
1149
+ * LINK PREVIEW OVERLAY
1150
+ *********************************************/
1151
+
1152
+ .reveal .overlay {
1153
+ position: absolute;
1154
+ top: 0;
1155
+ left: 0;
1156
+ width: 100%;
1157
+ height: 100%;
1158
+ z-index: 1000;
1159
+ background: rgba( 0, 0, 0, 0.9 );
1160
+ opacity: 0;
1161
+ visibility: hidden;
1162
+ transition: all 0.3s ease;
1163
+ }
1164
+ .reveal .overlay.visible {
1165
+ opacity: 1;
1166
+ visibility: visible;
1167
+ }
1168
+
1169
+ .reveal .overlay .spinner {
1170
+ position: absolute;
1171
+ display: block;
1172
+ top: 50%;
1173
+ left: 50%;
1174
+ width: 32px;
1175
+ height: 32px;
1176
+ margin: -16px 0 0 -16px;
1177
+ z-index: 10;
1178
+ 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);
1179
+
1180
+ visibility: visible;
1181
+ opacity: 0.6;
1182
+ transition: all 0.3s ease;
1183
+ }
1184
+
1185
+ .reveal .overlay header {
1186
+ position: absolute;
1187
+ left: 0;
1188
+ top: 0;
1189
+ width: 100%;
1190
+ height: 40px;
1191
+ z-index: 2;
1192
+ border-bottom: 1px solid #222;
1193
+ }
1194
+ .reveal .overlay header a {
1195
+ display: inline-block;
1196
+ width: 40px;
1197
+ height: 40px;
1198
+ line-height: 36px;
1199
+ padding: 0 10px;
1200
+ float: right;
1201
+ opacity: 0.6;
1202
+
1203
+ box-sizing: border-box;
1204
+ }
1205
+ .reveal .overlay header a:hover {
1206
+ opacity: 1;
1207
+ }
1208
+ .reveal .overlay header a .icon {
1209
+ display: inline-block;
1210
+ width: 20px;
1211
+ height: 20px;
1212
+
1213
+ background-position: 50% 50%;
1214
+ background-size: 100%;
1215
+ background-repeat: no-repeat;
1216
+ }
1217
+ .reveal .overlay header a.close .icon {
1218
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);
1219
+ }
1220
+ .reveal .overlay header a.external .icon {
1221
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);
1222
+ }
1223
+
1224
+ .reveal .overlay .viewport {
1225
+ position: absolute;
1226
+ display: flex;
1227
+ top: 40px;
1228
+ right: 0;
1229
+ bottom: 0;
1230
+ left: 0;
1231
+ }
1232
+
1233
+ .reveal .overlay.overlay-preview .viewport iframe {
1234
+ width: 100%;
1235
+ height: 100%;
1236
+ max-width: 100%;
1237
+ max-height: 100%;
1238
+ border: 0;
1239
+
1240
+ opacity: 0;
1241
+ visibility: hidden;
1242
+ transition: all 0.3s ease;
1243
+ }
1244
+
1245
+ .reveal .overlay.overlay-preview.loaded .viewport iframe {
1246
+ opacity: 1;
1247
+ visibility: visible;
1248
+ }
1249
+
1250
+ .reveal .overlay.overlay-preview.loaded .viewport-inner {
1251
+ position: absolute;
1252
+ z-index: -1;
1253
+ left: 0;
1254
+ top: 45%;
1255
+ width: 100%;
1256
+ text-align: center;
1257
+ letter-spacing: normal;
1258
+ }
1259
+ .reveal .overlay.overlay-preview .x-frame-error {
1260
+ opacity: 0;
1261
+ transition: opacity 0.3s ease 0.3s;
1262
+ }
1263
+ .reveal .overlay.overlay-preview.loaded .x-frame-error {
1264
+ opacity: 1;
1265
+ }
1266
+
1267
+ .reveal .overlay.overlay-preview.loaded .spinner {
1268
+ opacity: 0;
1269
+ visibility: hidden;
1270
+ transform: scale(0.2);
1271
+ }
1272
+
1273
+ .reveal .overlay.overlay-help .viewport {
1274
+ overflow: auto;
1275
+ color: #fff;
1276
+ }
1277
+
1278
+ .reveal .overlay.overlay-help .viewport .viewport-inner {
1279
+ width: 600px;
1280
+ margin: auto;
1281
+ padding: 20px 20px 80px 20px;
1282
+ text-align: center;
1283
+ letter-spacing: normal;
1284
+ }
1285
+
1286
+ .reveal .overlay.overlay-help .viewport .viewport-inner .title {
1287
+ font-size: 20px;
1288
+ }
1289
+
1290
+ .reveal .overlay.overlay-help .viewport .viewport-inner table {
1291
+ border: 1px solid #fff;
1292
+ border-collapse: collapse;
1293
+ font-size: 16px;
1294
+ }
1295
+
1296
+ .reveal .overlay.overlay-help .viewport .viewport-inner table th,
1297
+ .reveal .overlay.overlay-help .viewport .viewport-inner table td {
1298
+ width: 200px;
1299
+ padding: 14px;
1300
+ border: 1px solid #fff;
1301
+ vertical-align: middle;
1302
+ }
1303
+
1304
+ .reveal .overlay.overlay-help .viewport .viewport-inner table th {
1305
+ padding-top: 20px;
1306
+ padding-bottom: 20px;
1307
+ }
1308
+
1309
+
1310
+
1311
+ /*********************************************
1312
+ * PLAYBACK COMPONENT
1313
+ *********************************************/
1314
+
1315
+ .reveal .playback {
1316
+ position: fixed;
1317
+ left: 15px;
1318
+ bottom: 20px;
1319
+ z-index: 30;
1320
+ cursor: pointer;
1321
+ transition: all 400ms ease;
1322
+ }
1323
+
1324
+ .reveal.overview .playback {
1325
+ opacity: 0;
1326
+ visibility: hidden;
1327
+ }
1328
+
1329
+
1330
+ /*********************************************
1331
+ * ROLLING LINKS
1332
+ *********************************************/
1333
+
1334
+ .reveal .roll {
1335
+ display: inline-block;
1336
+ line-height: 1.2;
1337
+ overflow: hidden;
1338
+
1339
+ vertical-align: top;
1340
+ perspective: 400px;
1341
+ perspective-origin: 50% 50%;
1342
+ }
1343
+ .reveal .roll:hover {
1344
+ background: none;
1345
+ text-shadow: none;
1346
+ }
1347
+ .reveal .roll span {
1348
+ display: block;
1349
+ position: relative;
1350
+ padding: 0 2px;
1351
+
1352
+ pointer-events: none;
1353
+ transition: all 400ms ease;
1354
+ transform-origin: 50% 0%;
1355
+ transform-style: preserve-3d;
1356
+ backface-visibility: hidden;
1357
+ }
1358
+ .reveal .roll:hover span {
1359
+ background: rgba(0,0,0,0.5);
1360
+ transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
1361
+ }
1362
+ .reveal .roll span:after {
1363
+ content: attr(data-title);
1364
+
1365
+ display: block;
1366
+ position: absolute;
1367
+ left: 0;
1368
+ top: 0;
1369
+ padding: 0 2px;
1370
+ backface-visibility: hidden;
1371
+ transform-origin: 50% 0%;
1372
+ transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
1373
+ }
1374
+
1375
+
1376
+ /*********************************************
1377
+ * SPEAKER NOTES
1378
+ *********************************************/
1379
+
1380
+ // Hide on-page notes
1381
+ .reveal aside.notes {
1382
+ display: none;
1383
+ }
1384
+
1385
+ // An interface element that can optionally be used to show the
1386
+ // speaker notes to all viewers, on top of the presentation
1387
+ .reveal .speaker-notes {
1388
+ display: none;
1389
+ position: absolute;
1390
+ width: 70%;
1391
+ max-height: 15%;
1392
+ left: 15%;
1393
+ bottom: 26px;
1394
+ padding: 10px;
1395
+ z-index: 1;
1396
+ font-size: 18px;
1397
+ line-height: 1.4;
1398
+ color: #fff;
1399
+ background-color: rgba(0,0,0,0.5);
1400
+ overflow: auto;
1401
+ box-sizing: border-box;
1402
+ text-align: left;
1403
+ font-family: Helvetica, sans-serif;
1404
+ -webkit-overflow-scrolling: touch;
1405
+ }
1406
+
1407
+ .reveal .speaker-notes.visible:not(:empty) {
1408
+ display: block;
1409
+ }
1410
+
1411
+ @media screen and (max-width: 1024px) {
1412
+ .reveal .speaker-notes {
1413
+ font-size: 14px;
1414
+ }
1415
+ }
1416
+
1417
+ @media screen and (max-width: 600px) {
1418
+ .reveal .speaker-notes {
1419
+ width: 90%;
1420
+ left: 5%;
1421
+ }
1422
+ }
1423
+
1424
+
1425
+ /*********************************************
1426
+ * ZOOM PLUGIN
1427
+ *********************************************/
1428
+
1429
+ .zoomed .reveal *,
1430
+ .zoomed .reveal *:before,
1431
+ .zoomed .reveal *:after {
1432
+ backface-visibility: visible !important;
1433
+ }
1434
+
1435
+ .zoomed .reveal .progress,
1436
+ .zoomed .reveal .controls {
1437
+ opacity: 0;
1438
+ }
1439
+
1440
+ .zoomed .reveal .roll span {
1441
+ background: none;
1442
+ }
1443
+
1444
+ .zoomed .reveal .roll span:after {
1445
+ visibility: hidden;
1446
+ }