reveal-ck 0.1.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 (92) hide show
  1. data/.gitmodules +3 -0
  2. data/.rspec +2 -0
  3. data/.rvmrc +16 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +15 -0
  6. data/Gemfile.lock +52 -0
  7. data/LICENSE +20 -0
  8. data/README.md +103 -0
  9. data/Rakefile +16 -0
  10. data/VERSION +1 -0
  11. data/bin/reveal-ck +46 -0
  12. data/features/data/images/ruby100.png +0 -0
  13. data/features/generate.feature +63 -0
  14. data/features/help.feature +18 -0
  15. data/features/step_definitions/file_management_steps.rb +3 -0
  16. data/features/support/env.rb +15 -0
  17. data/features/support/file_management.rb +16 -0
  18. data/lib/reveal-ck.rb +4 -0
  19. data/lib/reveal-ck/file_slicer.rb +23 -0
  20. data/lib/reveal-ck/file_splicer.rb +39 -0
  21. data/lib/reveal-ck/haml_processor.rb +24 -0
  22. data/lib/reveal-ck/version.rb +4 -0
  23. data/rakelib/cucumber.rake +2 -0
  24. data/rakelib/jeweler.rake +12 -0
  25. data/rakelib/presentation.rake +40 -0
  26. data/rakelib/reveal.rake +15 -0
  27. data/rakelib/rspec.rake +5 -0
  28. data/reveal-ck.gemspec +152 -0
  29. data/reveal.js/LICENSE +19 -0
  30. data/reveal.js/README.md +374 -0
  31. data/reveal.js/css/print/paper.css +176 -0
  32. data/reveal.js/css/print/pdf.css +160 -0
  33. data/reveal.js/css/reveal.css +1312 -0
  34. data/reveal.js/css/reveal.min.css +7 -0
  35. data/reveal.js/css/shaders/tile-flip.fs +64 -0
  36. data/reveal.js/css/shaders/tile-flip.vs +141 -0
  37. data/reveal.js/css/theme/README.md +25 -0
  38. data/reveal.js/css/theme/beige.css +163 -0
  39. data/reveal.js/css/theme/default.css +163 -0
  40. data/reveal.js/css/theme/night.css +150 -0
  41. data/reveal.js/css/theme/serif.css +150 -0
  42. data/reveal.js/css/theme/simple.css +152 -0
  43. data/reveal.js/css/theme/sky.css +156 -0
  44. data/reveal.js/css/theme/source/beige.scss +50 -0
  45. data/reveal.js/css/theme/source/default.scss +42 -0
  46. data/reveal.js/css/theme/source/night.scss +35 -0
  47. data/reveal.js/css/theme/source/serif.scss +33 -0
  48. data/reveal.js/css/theme/source/simple.scss +38 -0
  49. data/reveal.js/css/theme/source/sky.scss +41 -0
  50. data/reveal.js/css/theme/template/mixins.scss +29 -0
  51. data/reveal.js/css/theme/template/settings.scss +33 -0
  52. data/reveal.js/css/theme/template/theme.scss +163 -0
  53. data/reveal.js/grunt.js +84 -0
  54. data/reveal.js/index.html +375 -0
  55. data/reveal.js/js/reveal.js +1796 -0
  56. data/reveal.js/js/reveal.min.js +8 -0
  57. data/reveal.js/lib/css/zenburn.css +115 -0
  58. data/reveal.js/lib/font/league_gothic-webfont.eot +0 -0
  59. data/reveal.js/lib/font/league_gothic-webfont.svg +230 -0
  60. data/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
  61. data/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
  62. data/reveal.js/lib/font/league_gothic_license +2 -0
  63. data/reveal.js/lib/js/classList.js +2 -0
  64. data/reveal.js/lib/js/head.min.js +8 -0
  65. data/reveal.js/lib/js/html5shiv.js +7 -0
  66. data/reveal.js/package.json +31 -0
  67. data/reveal.js/plugin/highlight/highlight.js +9 -0
  68. data/reveal.js/plugin/markdown/markdown.js +37 -0
  69. data/reveal.js/plugin/markdown/showdown.js +62 -0
  70. data/reveal.js/plugin/notes-server/client.js +57 -0
  71. data/reveal.js/plugin/notes-server/index.js +58 -0
  72. data/reveal.js/plugin/notes-server/notes.html +139 -0
  73. data/reveal.js/plugin/notes/notes.html +164 -0
  74. data/reveal.js/plugin/notes/notes.js +98 -0
  75. data/reveal.js/plugin/postmessage/example.html +39 -0
  76. data/reveal.js/plugin/postmessage/postmessage.js +42 -0
  77. data/reveal.js/plugin/print-pdf/print-pdf.js +39 -0
  78. data/reveal.js/plugin/remotes/remotes.js +30 -0
  79. data/reveal.js/plugin/zoom-js/zoom.js +251 -0
  80. data/spec/data/haml/basic.haml +7 -0
  81. data/spec/data/html/converted_basic_haml.html +10 -0
  82. data/spec/data/html/reveal-js-index.html +375 -0
  83. data/spec/data/slicer/after_remove +6 -0
  84. data/spec/data/slicer/before_remove +10 -0
  85. data/spec/data/splicer/abcd +4 -0
  86. data/spec/data/splicer/after_insert +14 -0
  87. data/spec/data/splicer/before_insert +10 -0
  88. data/spec/lib/reveal-ck/file_slicer_spec.rb +42 -0
  89. data/spec/lib/reveal-ck/file_splicer_spec.rb +41 -0
  90. data/spec/lib/reveal-ck/haml_processor_spec.rb +38 -0
  91. data/spec/spec_helper.rb +27 -0
  92. metadata +271 -0
@@ -0,0 +1,176 @@
1
+ /* Default Print Stylesheet Template
2
+ by Rob Glazebrook of CSSnewbie.com
3
+ Last Updated: June 4, 2008
4
+
5
+ Feel free (nay, compelled) to edit, append, and
6
+ manipulate this file as you see fit. */
7
+
8
+
9
+ /* SECTION 1: Set default width, margin, float, and
10
+ background. This prevents elements from extending
11
+ beyond the edge of the printed page, and prevents
12
+ unnecessary background images from printing */
13
+ body {
14
+ background: #fff;
15
+ font-size: 13pt;
16
+ width: auto;
17
+ height: auto;
18
+ border: 0;
19
+ margin: 0 5%;
20
+ padding: 0;
21
+ float: none !important;
22
+ overflow: visible;
23
+ }
24
+ html {
25
+ background: #fff;
26
+ width: auto;
27
+ height: auto;
28
+ overflow: visible;
29
+ }
30
+
31
+ /* SECTION 2: Remove any elements not needed in print.
32
+ This would include navigation, ads, sidebars, etc. */
33
+ .nestedarrow,
34
+ .controls,
35
+ .reveal .progress,
36
+ .reveal.overview,
37
+ .fork-reveal,
38
+ .share-reveal,
39
+ .state-background {
40
+ display: none !important;
41
+ }
42
+
43
+ /* SECTION 3: Set body font face, size, and color.
44
+ Consider using a serif font for readability. */
45
+ body, p, td, li, div, a {
46
+ font-size: 16pt!important;
47
+ font-family: Georgia, "Times New Roman", Times, serif !important;
48
+ color: #000;
49
+ }
50
+
51
+ /* SECTION 4: Set heading font face, sizes, and color.
52
+ Diffrentiate your headings from your body text.
53
+ Perhaps use a large sans-serif for distinction. */
54
+ h1,h2,h3,h4,h5,h6 {
55
+ color: #000!important;
56
+ height: auto;
57
+ line-height: normal;
58
+ font-family: Georgia, "Times New Roman", Times, serif !important;
59
+ text-shadow: 0 0 0 #000 !important;
60
+ text-align: left;
61
+ letter-spacing: normal;
62
+ }
63
+ /* Need to reduce the size of the fonts for printing */
64
+ h1 { font-size: 26pt !important; }
65
+ h2 { font-size: 22pt !important; }
66
+ h3 { font-size: 20pt !important; }
67
+ h4 { font-size: 20pt !important; font-variant: small-caps; }
68
+ h5 { font-size: 19pt !important; }
69
+ h6 { font-size: 18pt !important; font-style: italic; }
70
+
71
+ /* SECTION 5: Make hyperlinks more usable.
72
+ Ensure links are underlined, and consider appending
73
+ the URL to the end of the link for usability. */
74
+ a:link,
75
+ a:visited {
76
+ color: #000 !important;
77
+ font-weight: bold;
78
+ text-decoration: underline;
79
+ }
80
+ /*
81
+ .reveal a:link:after,
82
+ .reveal a:visited:after {
83
+ content: " (" attr(href) ") ";
84
+ color: #222 !important;
85
+ font-size: 90%;
86
+ }
87
+ */
88
+
89
+
90
+ /* SECTION 6: more reveal.js specific additions by @skypanther */
91
+ ul, ol, div, p {
92
+ visibility: visible;
93
+ position: static;
94
+ width: auto;
95
+ height: auto;
96
+ display: block;
97
+ overflow: visible;
98
+ margin: auto;
99
+ text-align: left !important;
100
+ }
101
+ .reveal .slides {
102
+ position: static;
103
+ width: auto;
104
+ height: auto;
105
+
106
+ left: auto;
107
+ top: auto;
108
+ margin-left: auto;
109
+ margin-top: auto;
110
+ padding: auto;
111
+
112
+ overflow: visible;
113
+ display: block;
114
+
115
+ text-align: center;
116
+ -webkit-perspective: none;
117
+ -moz-perspective: none;
118
+ -ms-perspective: none;
119
+ perspective: none;
120
+
121
+ -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
122
+ -moz-perspective-origin: 50% 50%;
123
+ -ms-perspective-origin: 50% 50%;
124
+ perspective-origin: 50% 50%;
125
+ }
126
+ .reveal .slides>section,
127
+ .reveal .slides>section>section {
128
+
129
+ visibility: visible !important;
130
+ position: static !important;
131
+ width: 90% !important;
132
+ height: auto !important;
133
+ display: block !important;
134
+ overflow: visible !important;
135
+
136
+ left: 0% !important;
137
+ top: 0% !important;
138
+ margin-left: 0px !important;
139
+ margin-top: 0px !important;
140
+ padding: 20px 0px !important;
141
+
142
+ opacity: 1 !important;
143
+
144
+ -webkit-transform-style: flat !important;
145
+ -moz-transform-style: flat !important;
146
+ -ms-transform-style: flat !important;
147
+ transform-style: flat !important;
148
+
149
+ -webkit-transform: none !important;
150
+ -moz-transform: none !important;
151
+ -ms-transform: none !important;
152
+ transform: none !important;
153
+ }
154
+ .reveal section {
155
+ page-break-after: always !important;
156
+ display: block !important;
157
+ }
158
+ .reveal section .fragment {
159
+ opacity: 1 !important;
160
+ visibility: visible !important;
161
+
162
+ -webkit-transform: none !important;
163
+ -moz-transform: none !important;
164
+ -ms-transform: none !important;
165
+ transform: none !important;
166
+ }
167
+ .reveal section:last-of-type {
168
+ page-break-after: avoid !important;
169
+ }
170
+ .reveal section img {
171
+ display: block;
172
+ margin: 15px 0px;
173
+ background: rgba(255,255,255,1);
174
+ border: 1px solid #666;
175
+ box-shadow: none;
176
+ }
@@ -0,0 +1,160 @@
1
+ /* Default Print Stylesheet Template
2
+ by Rob Glazebrook of CSSnewbie.com
3
+ Last Updated: June 4, 2008
4
+
5
+ Feel free (nay, compelled) to edit, append, and
6
+ manipulate this file as you see fit. */
7
+
8
+
9
+ /* SECTION 1: Set default width, margin, float, and
10
+ background. This prevents elements from extending
11
+ beyond the edge of the printed page, and prevents
12
+ unnecessary background images from printing */
13
+ * {
14
+ -webkit-print-color-adjust: exact;
15
+ }
16
+
17
+ body {
18
+ font-size: 18pt;
19
+ width: auto;
20
+ height: auto;
21
+ border: 0;
22
+ margin: 0 5%;
23
+ padding: 0;
24
+ float: none !important;
25
+ overflow: visible;
26
+ background-image: none !important;
27
+ }
28
+
29
+ html {
30
+ width: auto;
31
+ height: auto;
32
+ overflow: visible;
33
+ }
34
+
35
+ /* SECTION 2: Remove any elements not needed in print.
36
+ This would include navigation, ads, sidebars, etc. */
37
+ .nestedarrow,
38
+ .controls,
39
+ .reveal .progress,
40
+ .reveal.overview,
41
+ .fork-reveal,
42
+ .share-reveal,
43
+ .state-background {
44
+ display: none !important;
45
+ }
46
+
47
+ /* SECTION 3: Set body font face, size, and color.
48
+ Consider using a serif font for readability. */
49
+ body, p, td, li, div {
50
+ font-size: 18pt;
51
+ }
52
+
53
+ /* SECTION 4: Set heading font face, sizes, and color.
54
+ Diffrentiate your headings from your body text.
55
+ Perhaps use a large sans-serif for distinction. */
56
+ h1,h2,h3,h4,h5,h6 {
57
+ text-shadow: 0 0 0 #000 !important;
58
+ }
59
+
60
+ /* SECTION 5: Make hyperlinks more usable.
61
+ Ensure links are underlined, and consider appending
62
+ the URL to the end of the link for usability. */
63
+ a:link,
64
+ a:visited {
65
+ font-weight: bold;
66
+ text-decoration: underline;
67
+ }
68
+
69
+
70
+ /* SECTION 6: more reveal.js specific additions by @skypanther */
71
+ ul, ol, div, p {
72
+ visibility: visible;
73
+ position: static;
74
+ width: auto;
75
+ height: auto;
76
+ display: block;
77
+ overflow: visible;
78
+ margin: auto;
79
+ }
80
+ .reveal .slides {
81
+ position: static;
82
+ width: 100%;
83
+ height: auto;
84
+
85
+ left: auto;
86
+ top: auto;
87
+ margin-left: auto;
88
+ margin-right: auto;
89
+ margin-top: auto;
90
+ padding: auto;
91
+
92
+ overflow: visible;
93
+ display: block;
94
+
95
+ text-align: center;
96
+
97
+ -webkit-perspective: none;
98
+ -moz-perspective: none;
99
+ -ms-perspective: none;
100
+ perspective: none;
101
+
102
+ -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
103
+ -moz-perspective-origin: 50% 50%;
104
+ -ms-perspective-origin: 50% 50%;
105
+ perspective-origin: 50% 50%;
106
+ }
107
+ .reveal .slides section {
108
+
109
+ page-break-after: always !important;
110
+
111
+ visibility: visible !important;
112
+ position: static !important;
113
+ width: 100% !important;
114
+ height: auto !important;
115
+ min-height: initial !important;
116
+ display: block !important;
117
+ overflow: visible !important;
118
+
119
+ left: 0 !important;
120
+ top: 0 !important;
121
+ margin-left: 0px !important;
122
+ margin-top: 50px !important;
123
+ padding: 20px 0px !important;
124
+
125
+ opacity: 1 !important;
126
+
127
+ -webkit-transform-style: flat !important;
128
+ -moz-transform-style: flat !important;
129
+ -ms-transform-style: flat !important;
130
+ transform-style: flat !important;
131
+
132
+ -webkit-transform: none !important;
133
+ -moz-transform: none !important;
134
+ -ms-transform: none !important;
135
+ transform: none !important;
136
+ }
137
+ .reveal section.stack {
138
+ margin: 0px !important;
139
+ padding: 0px !important;
140
+ page-break-after: avoid !important;
141
+ }
142
+ .reveal section .fragment {
143
+ opacity: 1 !important;
144
+ visibility: visible !important;
145
+
146
+ -webkit-transform: none !important;
147
+ -moz-transform: none !important;
148
+ -ms-transform: none !important;
149
+ transform: none !important;
150
+ }
151
+ .reveal img {
152
+ box-shadow: none;
153
+ }
154
+ .reveal .roll {
155
+ overflow: visible;
156
+ line-height: 1em;
157
+ }
158
+ .reveal small a {
159
+ font-size: 16pt !important;
160
+ }
@@ -0,0 +1,1312 @@
1
+ @charset "UTF-8";
2
+
3
+ /*!
4
+ * reveal.js
5
+ * http://lab.hakim.se/reveal-js
6
+ * MIT licensed
7
+ *
8
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
9
+ */
10
+
11
+
12
+ /*********************************************
13
+ * RESET STYLES
14
+ *********************************************/
15
+
16
+ html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,
17
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,
18
+ .reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,
19
+ .reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,
20
+ .reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,
21
+ .reveal b, .reveal u, .reveal i, .reveal center,
22
+ .reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,
23
+ .reveal fieldset, .reveal form, .reveal label, .reveal legend,
24
+ .reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,
25
+ .reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,
26
+ .reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,
27
+ .reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,
28
+ .reveal time, .reveal mark, .reveal audio, video {
29
+ margin: 0;
30
+ padding: 0;
31
+ border: 0;
32
+ font-size: 100%;
33
+ font: inherit;
34
+ vertical-align: baseline;
35
+ }
36
+
37
+ .reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,
38
+ .reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {
39
+ display: block;
40
+ }
41
+
42
+
43
+ /*********************************************
44
+ * GLOBAL STYLES
45
+ *********************************************/
46
+
47
+ html,
48
+ body {
49
+ width: 100%;
50
+ height: 100%;
51
+ overflow: hidden;
52
+ }
53
+
54
+ body {
55
+ position: relative;
56
+ line-height: 1;
57
+ }
58
+
59
+ ::selection {
60
+ background: #FF5E99;
61
+ color: #fff;
62
+ text-shadow: none;
63
+ }
64
+
65
+ @media screen and (max-width: 900px), (max-height: 600px) {
66
+ .reveal .slides {
67
+ font-size: 0.82em;
68
+ }
69
+ }
70
+
71
+ @media screen and (max-width: 700px), (max-height: 400px) {
72
+ .reveal .slides {
73
+ font-size: 0.66em;
74
+ }
75
+ }
76
+
77
+ /*********************************************
78
+ * HEADERS
79
+ *********************************************/
80
+
81
+ .reveal h1,
82
+ .reveal h2,
83
+ .reveal h3,
84
+ .reveal h4,
85
+ .reveal h5,
86
+ .reveal h6 {
87
+ -webkit-hyphens: auto;
88
+ -moz-hyphens: auto;
89
+ hyphens: auto;
90
+
91
+ word-break: break-all;
92
+ word-break: break-word;
93
+ }
94
+
95
+ .reveal h1 { font-size: 3.77em; }
96
+ .reveal h2 { font-size: 2.11em; }
97
+ .reveal h3 { font-size: 1.55em; }
98
+ .reveal h4 { font-size: 1em; }
99
+
100
+
101
+ /*********************************************
102
+ * VIEW FRAGMENTS
103
+ *********************************************/
104
+
105
+ .reveal .slides section .fragment {
106
+ opacity: 0;
107
+
108
+ -webkit-transition: all .2s ease;
109
+ -moz-transition: all .2s ease;
110
+ -ms-transition: all .2s ease;
111
+ -o-transition: all .2s ease;
112
+ transition: all .2s ease;
113
+ }
114
+ .reveal .slides section .fragment.visible {
115
+ opacity: 1;
116
+ }
117
+
118
+ .reveal .slides section .fragment.grow {
119
+ opacity: 1;
120
+ }
121
+ .reveal .slides section .fragment.grow.visible {
122
+ -webkit-transform: scale( 1.3 );
123
+ -moz-transform: scale( 1.3 );
124
+ -ms-transform: scale( 1.3 );
125
+ -o-transform: scale( 1.3 );
126
+ transform: scale( 1.3 );
127
+ }
128
+
129
+ .reveal .slides section .fragment.shrink {
130
+ opacity: 1;
131
+ }
132
+ .reveal .slides section .fragment.shrink.visible {
133
+ -webkit-transform: scale( 0.7 );
134
+ -moz-transform: scale( 0.7 );
135
+ -ms-transform: scale( 0.7 );
136
+ -o-transform: scale( 0.7 );
137
+ transform: scale( 0.7 );
138
+ }
139
+
140
+ .reveal .slides section .fragment.roll-in {
141
+ opacity: 0;
142
+
143
+ -webkit-transform: rotateX( 90deg );
144
+ -moz-transform: rotateX( 90deg );
145
+ -ms-transform: rotateX( 90deg );
146
+ -o-transform: rotateX( 90deg );
147
+ transform: rotateX( 90deg );
148
+ }
149
+ .reveal .slides section .fragment.roll-in.visible {
150
+ opacity: 1;
151
+
152
+ -webkit-transform: rotateX( 0 );
153
+ -moz-transform: rotateX( 0 );
154
+ -ms-transform: rotateX( 0 );
155
+ -o-transform: rotateX( 0 );
156
+ transform: rotateX( 0 );
157
+ }
158
+
159
+ .reveal .slides section .fragment.fade-out {
160
+ opacity: 1;
161
+ }
162
+ .reveal .slides section .fragment.fade-out.visible {
163
+ opacity: 0;
164
+ }
165
+
166
+ .reveal .slides section .fragment.highlight-red,
167
+ .reveal .slides section .fragment.highlight-green,
168
+ .reveal .slides section .fragment.highlight-blue {
169
+ opacity: 1;
170
+ }
171
+ .reveal .slides section .fragment.highlight-red.visible {
172
+ color: #ff2c2d
173
+ }
174
+ .reveal .slides section .fragment.highlight-green.visible {
175
+ color: #17ff2e;
176
+ }
177
+ .reveal .slides section .fragment.highlight-blue.visible {
178
+ color: #1b91ff;
179
+ }
180
+
181
+
182
+ /*********************************************
183
+ * DEFAULT ELEMENT STYLES
184
+ *********************************************/
185
+
186
+ /* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */
187
+ .reveal:after {
188
+ content: '';
189
+ font-style: italic;
190
+ }
191
+
192
+ /* Ensure certain elements are never larger than the slide itself */
193
+ .reveal img,
194
+ .reveal video,
195
+ .reveal iframe {
196
+ max-width: 100%;
197
+ max-height: 100%;
198
+ }
199
+
200
+ .reveal strong,
201
+ .reveal b {
202
+ font-weight: bold;
203
+ }
204
+
205
+ .reveal em,
206
+ .reveal i {
207
+ font-style: italic;
208
+ }
209
+
210
+ .reveal ol,
211
+ .reveal ul {
212
+ display: inline-block;
213
+
214
+ text-align: left;
215
+ margin: 0 0 0 1em;
216
+ }
217
+
218
+ .reveal ol {
219
+ list-style-type: decimal;
220
+ }
221
+
222
+ .reveal ul {
223
+ list-style-type: disc;
224
+ }
225
+
226
+ .reveal ul ul {
227
+ list-style-type: square;
228
+ }
229
+
230
+ .reveal ul ul ul {
231
+ list-style-type: circle;
232
+ }
233
+
234
+ .reveal ul ul,
235
+ .reveal ul ol,
236
+ .reveal ol ol,
237
+ .reveal ol ul {
238
+ display: block;
239
+ margin-left: 40px;
240
+ }
241
+
242
+ .reveal p {
243
+ margin-bottom: 10px;
244
+ line-height: 1.2em;
245
+ }
246
+
247
+ .reveal q,
248
+ .reveal blockquote {
249
+ quotes: none;
250
+ }
251
+
252
+ .reveal blockquote {
253
+ display: block;
254
+ position: relative;
255
+ width: 70%;
256
+ margin: 5px auto;
257
+ padding: 5px;
258
+
259
+ font-style: italic;
260
+ background: rgba(255, 255, 255, 0.05);
261
+ box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
262
+ }
263
+ .reveal blockquote p:first-child,
264
+ .reveal blockquote p:last-child {
265
+ display: inline-block;
266
+ }
267
+ .reveal blockquote:before {
268
+ content: '\201C';
269
+ }
270
+ .reveal blockquote:after {
271
+ content: '\201D';
272
+ }
273
+
274
+ .reveal q {
275
+ font-style: italic;
276
+ }
277
+ .reveal q:before {
278
+ content: '\201C';
279
+ }
280
+ .reveal q:after {
281
+ content: '\201D';
282
+ }
283
+
284
+ .reveal pre {
285
+ display: block;
286
+ position: relative;
287
+ width: 90%;
288
+ margin: 15px auto;
289
+
290
+ text-align: left;
291
+ font-size: 0.55em;
292
+ font-family: monospace;
293
+ line-height: 1.2em;
294
+
295
+ word-wrap: break-word;
296
+
297
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
298
+ }
299
+ .reveal pre code {
300
+ padding: 5px;
301
+ }
302
+
303
+ .reveal code {
304
+ font-family: monospace;
305
+ overflow: auto;
306
+ max-height: 400px;
307
+ }
308
+
309
+ .reveal table th,
310
+ .reveal table td {
311
+ text-align: left;
312
+ padding-right: .3em;
313
+ }
314
+
315
+ .reveal table th {
316
+ text-shadow: rgb(255,255,255) 1px 1px 2px;
317
+ }
318
+
319
+ .reveal sup {
320
+ vertical-align: super;
321
+ }
322
+ .reveal sub {
323
+ vertical-align: sub;
324
+ }
325
+
326
+ .reveal small {
327
+ display: inline-block;
328
+ font-size: 0.6em;
329
+ line-height: 1.2em;
330
+ vertical-align: top;
331
+ }
332
+
333
+ .reveal small * {
334
+ vertical-align: top;
335
+ }
336
+
337
+
338
+ /*********************************************
339
+ * CONTROLS
340
+ *********************************************/
341
+
342
+ .reveal .controls {
343
+ display: none;
344
+ position: fixed;
345
+ width: 110px;
346
+ height: 110px;
347
+ z-index: 30;
348
+ right: 10px;
349
+ bottom: 10px;
350
+ }
351
+
352
+ .reveal .controls div {
353
+ position: absolute;
354
+ opacity: 0.1;
355
+ width: 0;
356
+ height: 0;
357
+ border: 12px solid transparent;
358
+
359
+ -webkit-transition: opacity 0.2s ease;
360
+ -moz-transition: opacity 0.2s ease;
361
+ -ms-transition: opacity 0.2s ease;
362
+ -o-transition: opacity 0.2s ease;
363
+ transition: opacity 0.2s ease;
364
+ }
365
+
366
+ .reveal .controls div.enabled {
367
+ opacity: 0.6;
368
+ cursor: pointer;
369
+ }
370
+
371
+ .reveal .controls div.enabled:active {
372
+ margin-top: 1px;
373
+ }
374
+
375
+ .reveal .controls div.navigate-left {
376
+ top: 42px;
377
+
378
+ border-right-width: 22px;
379
+ border-right-color: #eee;
380
+ }
381
+
382
+ .reveal .controls div.navigate-right {
383
+ left: 74px;
384
+ top: 42px;
385
+
386
+ border-left-width: 22px;
387
+ border-left-color: #eee;
388
+ }
389
+
390
+ .reveal .controls div.navigate-up {
391
+ left: 42px;
392
+
393
+ border-bottom-width: 22px;
394
+ border-bottom-color: #eee;
395
+ }
396
+
397
+ .reveal .controls div.navigate-down {
398
+ left: 42px;
399
+ top: 74px;
400
+
401
+ border-top-width: 22px;
402
+ border-top-color: #eee;
403
+ }
404
+
405
+
406
+ /*********************************************
407
+ * PROGRESS BAR
408
+ *********************************************/
409
+
410
+ .reveal .progress {
411
+ position: fixed;
412
+ display: none;
413
+ height: 3px;
414
+ width: 100%;
415
+ bottom: 0;
416
+ left: 0;
417
+ z-index: 10;
418
+ }
419
+ .reveal .progress:after {
420
+ content: '';
421
+ display: 'block';
422
+ position: absolute;
423
+ height: 20px;
424
+ width: 100%;
425
+ top: -20px;
426
+ }
427
+ .reveal .progress span {
428
+ display: block;
429
+ height: 100%;
430
+ width: 0px;
431
+
432
+ -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
433
+ -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
434
+ -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
435
+ -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
436
+ transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
437
+ }
438
+
439
+
440
+ /*********************************************
441
+ * ROLLING LINKS
442
+ *********************************************/
443
+
444
+ .reveal .roll {
445
+ display: inline-block;
446
+ line-height: 1.2;
447
+ overflow: hidden;
448
+
449
+ vertical-align: top;
450
+
451
+ -webkit-perspective: 400px;
452
+ -moz-perspective: 400px;
453
+ -ms-perspective: 400px;
454
+ perspective: 400px;
455
+
456
+ -webkit-perspective-origin: 50% 50%;
457
+ -moz-perspective-origin: 50% 50%;
458
+ -ms-perspective-origin: 50% 50%;
459
+ perspective-origin: 50% 50%;
460
+ }
461
+ .reveal .roll:hover {
462
+ background: none;
463
+ text-shadow: none;
464
+ }
465
+ .reveal .roll span {
466
+ display: block;
467
+ position: relative;
468
+ padding: 0 2px;
469
+
470
+ pointer-events: none;
471
+
472
+ -webkit-transition: all 400ms ease;
473
+ -moz-transition: all 400ms ease;
474
+ -ms-transition: all 400ms ease;
475
+ transition: all 400ms ease;
476
+
477
+ -webkit-transform-origin: 50% 0%;
478
+ -moz-transform-origin: 50% 0%;
479
+ -ms-transform-origin: 50% 0%;
480
+ transform-origin: 50% 0%;
481
+
482
+ -webkit-transform-style: preserve-3d;
483
+ -moz-transform-style: preserve-3d;
484
+ -ms-transform-style: preserve-3d;
485
+ transform-style: preserve-3d;
486
+
487
+ -webkit-backface-visibility: hidden;
488
+ -moz-backface-visibility: hidden;
489
+ backface-visibility: hidden;
490
+ }
491
+ .reveal .roll:hover span {
492
+ background: rgba(0,0,0,0.5);
493
+
494
+ -webkit-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
495
+ -moz-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
496
+ -ms-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
497
+ transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
498
+ }
499
+ .reveal .roll span:after {
500
+ content: attr(data-title);
501
+
502
+ display: block;
503
+ position: absolute;
504
+ left: 0;
505
+ top: 0;
506
+ padding: 0 2px;
507
+
508
+ -webkit-transform-origin: 50% 0%;
509
+ -moz-transform-origin: 50% 0%;
510
+ -ms-transform-origin: 50% 0%;
511
+ transform-origin: 50% 0%;
512
+
513
+ -webkit-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
514
+ -moz-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
515
+ -ms-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
516
+ transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
517
+ }
518
+
519
+
520
+ /*********************************************
521
+ * SLIDES
522
+ *********************************************/
523
+
524
+ .reveal {
525
+ position: relative;
526
+ width: 100%;
527
+ height: 100%;
528
+ min-height: 640px; /* min height + 40 to account for padding */
529
+ }
530
+
531
+ .reveal .slides {
532
+ position: absolute;
533
+ max-width: 900px;
534
+ min-height: 600px;
535
+ width: 80%;
536
+ left: 50%;
537
+ top: 50%;
538
+
539
+ overflow: visible;
540
+ z-index: 1;
541
+ text-align: center;
542
+
543
+ -webkit-transition: -webkit-perspective .4s ease;
544
+ -moz-transition: -moz-perspective .4s ease;
545
+ -ms-transition: -ms-perspective .4s ease;
546
+ -o-transition: -o-perspective .4s ease;
547
+ transition: perspective .4s ease;
548
+
549
+ -webkit-perspective: 600px;
550
+ -moz-perspective: 600px;
551
+ -ms-perspective: 600px;
552
+ perspective: 600px;
553
+
554
+ -webkit-perspective-origin: 0px -100px;
555
+ -moz-perspective-origin: 0px -100px;
556
+ -ms-perspective-origin: 0px -100px;
557
+ perspective-origin: 0px -100px;
558
+ }
559
+
560
+ .reveal .slides>section,
561
+ .reveal .slides>section>section {
562
+ display: none;
563
+ position: absolute;
564
+ width: 100%;
565
+ padding: 20px 0px;
566
+
567
+ z-index: 10;
568
+ line-height: 1.2em;
569
+ font-weight: normal;
570
+
571
+ -webkit-transform-style: preserve-3d;
572
+ -moz-transform-style: preserve-3d;
573
+ -ms-transform-style: preserve-3d;
574
+ transform-style: preserve-3d;
575
+
576
+ -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
577
+ -webkit-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
578
+ visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
579
+ opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
580
+ -moz-transition: -moz-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
581
+ -moz-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
582
+ visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
583
+ opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
584
+ -ms-transition: -ms-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
585
+ -ms-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
586
+ visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
587
+ opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
588
+ -o-transition: -o-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
589
+ -o-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
590
+ visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
591
+ opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
592
+ transition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
593
+ transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
594
+ visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
595
+ opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
596
+ }
597
+
598
+ .reveal .slides>section {
599
+ left: -50%;
600
+ top: -50%;
601
+ }
602
+
603
+ .reveal .slides>section.present,
604
+ .reveal .slides>section>section.present {
605
+ display: block;
606
+ z-index: 11;
607
+ opacity: 1;
608
+ }
609
+
610
+ .reveal.center,
611
+ .reveal.center .slides,
612
+ .reveal.center .slides section {
613
+ min-height: auto !important;
614
+ }
615
+
616
+
617
+
618
+ /*********************************************
619
+ * DEFAULT TRANSITION
620
+ *********************************************/
621
+
622
+ .reveal .slides>section.past {
623
+ display: block;
624
+ opacity: 0;
625
+
626
+ -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
627
+ -moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
628
+ -ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
629
+ transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
630
+ }
631
+ .reveal .slides>section.future {
632
+ display: block;
633
+ opacity: 0;
634
+
635
+ -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
636
+ -moz-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
637
+ -ms-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
638
+ transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
639
+ }
640
+
641
+ .reveal .slides>section>section.past {
642
+ display: block;
643
+ opacity: 0;
644
+
645
+ -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
646
+ -moz-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
647
+ -ms-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
648
+ transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
649
+ }
650
+ .reveal .slides>section>section.future {
651
+ display: block;
652
+ opacity: 0;
653
+
654
+ -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
655
+ -moz-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
656
+ -ms-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
657
+ transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
658
+ }
659
+
660
+
661
+ /*********************************************
662
+ * CONCAVE TRANSITION
663
+ *********************************************/
664
+
665
+ .reveal.concave .slides>section.past {
666
+ -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
667
+ -moz-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
668
+ -ms-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
669
+ transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
670
+ }
671
+ .reveal.concave .slides>section.future {
672
+ -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
673
+ -moz-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
674
+ -ms-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
675
+ transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
676
+ }
677
+
678
+ .reveal.concave .slides>section>section.past {
679
+ -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
680
+ -moz-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
681
+ -ms-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
682
+ transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
683
+ }
684
+ .reveal.concave .slides>section>section.future {
685
+ -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
686
+ -moz-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
687
+ -ms-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
688
+ transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
689
+ }
690
+
691
+
692
+ /*********************************************
693
+ * ZOOM TRANSITION
694
+ *********************************************/
695
+
696
+ .reveal.zoom .slides>section.past {
697
+ opacity: 0;
698
+ visibility: hidden;
699
+
700
+ -webkit-transform: scale(16);
701
+ -moz-transform: scale(16);
702
+ -ms-transform: scale(16);
703
+ -o-transform: scale(16);
704
+ transform: scale(16);
705
+ }
706
+ .reveal.zoom .slides>section.future {
707
+ opacity: 0;
708
+ visibility: hidden;
709
+
710
+ -webkit-transform: scale(0.2);
711
+ -moz-transform: scale(0.2);
712
+ -ms-transform: scale(0.2);
713
+ -o-transform: scale(0.2);
714
+ transform: scale(0.2);
715
+ }
716
+
717
+ .reveal.zoom .slides>section>section.past {
718
+ -webkit-transform: translate(0, -150%);
719
+ -moz-transform: translate(0, -150%);
720
+ -ms-transform: translate(0, -150%);
721
+ -o-transform: translate(0, -150%);
722
+ transform: translate(0, -150%);
723
+ }
724
+ .reveal.zoom .slides>section>section.future {
725
+ -webkit-transform: translate(0, 150%);
726
+ -moz-transform: translate(0, 150%);
727
+ -ms-transform: translate(0, 150%);
728
+ -o-transform: translate(0, 150%);
729
+ transform: translate(0, 150%);
730
+ }
731
+
732
+
733
+ /*********************************************
734
+ * LINEAR TRANSITION
735
+ *********************************************/
736
+
737
+ .reveal.linear .slides>section.past {
738
+ -webkit-transform: translate(-150%, 0);
739
+ -moz-transform: translate(-150%, 0);
740
+ -ms-transform: translate(-150%, 0);
741
+ -o-transform: translate(-150%, 0);
742
+ transform: translate(-150%, 0);
743
+ }
744
+ .reveal.linear .slides>section.future {
745
+ -webkit-transform: translate(150%, 0);
746
+ -moz-transform: translate(150%, 0);
747
+ -ms-transform: translate(150%, 0);
748
+ -o-transform: translate(150%, 0);
749
+ transform: translate(150%, 0);
750
+ }
751
+
752
+ .reveal.linear .slides>section>section.past {
753
+ -webkit-transform: translate(0, -150%);
754
+ -moz-transform: translate(0, -150%);
755
+ -ms-transform: translate(0, -150%);
756
+ -o-transform: translate(0, -150%);
757
+ transform: translate(0, -150%);
758
+ }
759
+ .reveal.linear .slides>section>section.future {
760
+ -webkit-transform: translate(0, 150%);
761
+ -moz-transform: translate(0, 150%);
762
+ -ms-transform: translate(0, 150%);
763
+ -o-transform: translate(0, 150%);
764
+ transform: translate(0, 150%);
765
+ }
766
+
767
+
768
+ /*********************************************
769
+ * CUBE TRANSITION
770
+ *********************************************/
771
+
772
+ .reveal.cube .slides {
773
+ -webkit-perspective: 1300px;
774
+ -moz-perspective: 1300px;
775
+ -ms-perspective: 1300px;
776
+ perspective: 1300px;
777
+ }
778
+
779
+ .reveal.cube .slides section {
780
+ padding: 30px;
781
+ min-height: 600px;
782
+
783
+ -webkit-backface-visibility: hidden;
784
+ -moz-backface-visibility: hidden;
785
+ -ms-backface-visibility: hidden;
786
+ backface-visibility: hidden;
787
+
788
+ -webkit-box-sizing: border-box;
789
+ -moz-box-sizing: border-box;
790
+ box-sizing: border-box;
791
+ }
792
+ .reveal.center.cube .slides section {
793
+ min-height: auto;
794
+ }
795
+ .reveal.cube .slides section:not(.stack):before {
796
+ content: '';
797
+ position: absolute;
798
+ display: block;
799
+ width: 100%;
800
+ height: 100%;
801
+ left: 0;
802
+ top: 0;
803
+ background: rgba(0,0,0,0.1);
804
+ border-radius: 4px;
805
+
806
+ -webkit-transform: translateZ( -20px );
807
+ -moz-transform: translateZ( -20px );
808
+ -ms-transform: translateZ( -20px );
809
+ -o-transform: translateZ( -20px );
810
+ transform: translateZ( -20px );
811
+ }
812
+ .reveal.cube .slides section:not(.stack):after {
813
+ content: '';
814
+ position: absolute;
815
+ display: block;
816
+ width: 90%;
817
+ height: 30px;
818
+ left: 5%;
819
+ bottom: 0;
820
+ background: none;
821
+ z-index: 1;
822
+
823
+ border-radius: 4px;
824
+ box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
825
+
826
+ -webkit-transform: translateZ(-90px) rotateX( 65deg );
827
+ -moz-transform: translateZ(-90px) rotateX( 65deg );
828
+ -ms-transform: translateZ(-90px) rotateX( 65deg );
829
+ -o-transform: translateZ(-90px) rotateX( 65deg );
830
+ transform: translateZ(-90px) rotateX( 65deg );
831
+ }
832
+
833
+ .reveal.cube .slides>section.stack {
834
+ padding: 0;
835
+ background: none;
836
+ }
837
+
838
+ .reveal.cube .slides>section.past {
839
+ -webkit-transform-origin: 100% 0%;
840
+ -moz-transform-origin: 100% 0%;
841
+ -ms-transform-origin: 100% 0%;
842
+ transform-origin: 100% 0%;
843
+
844
+ -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
845
+ -moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
846
+ -ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
847
+ transform: translate3d(-100%, 0, 0) rotateY(-90deg);
848
+ }
849
+
850
+ .reveal.cube .slides>section.future {
851
+ -webkit-transform-origin: 0% 0%;
852
+ -moz-transform-origin: 0% 0%;
853
+ -ms-transform-origin: 0% 0%;
854
+ transform-origin: 0% 0%;
855
+
856
+ -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);
857
+ -moz-transform: translate3d(100%, 0, 0) rotateY(90deg);
858
+ -ms-transform: translate3d(100%, 0, 0) rotateY(90deg);
859
+ transform: translate3d(100%, 0, 0) rotateY(90deg);
860
+ }
861
+
862
+ .reveal.cube .slides>section>section.past {
863
+ -webkit-transform-origin: 0% 100%;
864
+ -moz-transform-origin: 0% 100%;
865
+ -ms-transform-origin: 0% 100%;
866
+ transform-origin: 0% 100%;
867
+
868
+ -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);
869
+ -moz-transform: translate3d(0, -100%, 0) rotateX(90deg);
870
+ -ms-transform: translate3d(0, -100%, 0) rotateX(90deg);
871
+ transform: translate3d(0, -100%, 0) rotateX(90deg);
872
+ }
873
+
874
+ .reveal.cube .slides>section>section.future {
875
+ -webkit-transform-origin: 0% 0%;
876
+ -moz-transform-origin: 0% 0%;
877
+ -ms-transform-origin: 0% 0%;
878
+ transform-origin: 0% 0%;
879
+
880
+ -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);
881
+ -moz-transform: translate3d(0, 100%, 0) rotateX(-90deg);
882
+ -ms-transform: translate3d(0, 100%, 0) rotateX(-90deg);
883
+ transform: translate3d(0, 100%, 0) rotateX(-90deg);
884
+ }
885
+
886
+
887
+ /*********************************************
888
+ * PAGE TRANSITION
889
+ *********************************************/
890
+
891
+ .reveal.page .slides {
892
+ -webkit-perspective-origin: 0% 50%;
893
+ -moz-perspective-origin: 0% 50%;
894
+ -ms-perspective-origin: 0% 50%;
895
+ perspective-origin: 0% 50%;
896
+
897
+ -webkit-perspective: 3000px;
898
+ -moz-perspective: 3000px;
899
+ -ms-perspective: 3000px;
900
+ perspective: 3000px;
901
+ }
902
+
903
+ .reveal.page .slides section {
904
+ padding: 30px;
905
+ min-height: 600px;
906
+
907
+ -webkit-box-sizing: border-box;
908
+ -moz-box-sizing: border-box;
909
+ box-sizing: border-box;
910
+ }
911
+ .reveal.page .slides section.past {
912
+ z-index: 12;
913
+ }
914
+ .reveal.page .slides section:not(.stack):before {
915
+ content: '';
916
+ position: absolute;
917
+ display: block;
918
+ width: 100%;
919
+ height: 100%;
920
+ left: 0;
921
+ top: 0;
922
+ background: rgba(0,0,0,0.1);
923
+
924
+ -webkit-transform: translateZ( -20px );
925
+ -moz-transform: translateZ( -20px );
926
+ -ms-transform: translateZ( -20px );
927
+ -o-transform: translateZ( -20px );
928
+ transform: translateZ( -20px );
929
+ }
930
+ .reveal.page .slides section:not(.stack):after {
931
+ content: '';
932
+ position: absolute;
933
+ display: block;
934
+ width: 90%;
935
+ height: 30px;
936
+ left: 5%;
937
+ bottom: 0;
938
+ background: none;
939
+ z-index: 1;
940
+
941
+ border-radius: 4px;
942
+ box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
943
+
944
+ -webkit-transform: translateZ(-90px) rotateX( 65deg );
945
+ }
946
+
947
+ .reveal.page .slides>section.stack {
948
+ padding: 0;
949
+ background: none;
950
+ }
951
+
952
+ .reveal.page .slides>section.past {
953
+ -webkit-transform-origin: 0% 0%;
954
+ -moz-transform-origin: 0% 0%;
955
+ -ms-transform-origin: 0% 0%;
956
+ transform-origin: 0% 0%;
957
+
958
+ -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
959
+ -moz-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
960
+ -ms-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
961
+ transform: translate3d(-40%, 0, 0) rotateY(-80deg);
962
+ }
963
+
964
+ .reveal.page .slides>section.future {
965
+ -webkit-transform-origin: 100% 0%;
966
+ -moz-transform-origin: 100% 0%;
967
+ -ms-transform-origin: 100% 0%;
968
+ transform-origin: 100% 0%;
969
+
970
+ -webkit-transform: translate3d(0, 0, 0);
971
+ -moz-transform: translate3d(0, 0, 0);
972
+ -ms-transform: translate3d(0, 0, 0);
973
+ transform: translate3d(0, 0, 0);
974
+ }
975
+
976
+ .reveal.page .slides>section>section.past {
977
+ -webkit-transform-origin: 0% 0%;
978
+ -moz-transform-origin: 0% 0%;
979
+ -ms-transform-origin: 0% 0%;
980
+ transform-origin: 0% 0%;
981
+
982
+ -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);
983
+ -moz-transform: translate3d(0, -40%, 0) rotateX(80deg);
984
+ -ms-transform: translate3d(0, -40%, 0) rotateX(80deg);
985
+ transform: translate3d(0, -40%, 0) rotateX(80deg);
986
+ }
987
+
988
+ .reveal.page .slides>section>section.future {
989
+ -webkit-transform-origin: 0% 100%;
990
+ -moz-transform-origin: 0% 100%;
991
+ -ms-transform-origin: 0% 100%;
992
+ transform-origin: 0% 100%;
993
+
994
+ -webkit-transform: translate3d(0, 0, 0);
995
+ -moz-transform: translate3d(0, 0, 0);
996
+ -ms-transform: translate3d(0, 0, 0);
997
+ transform: translate3d(0, 0, 0);
998
+ }
999
+
1000
+
1001
+ /*********************************************
1002
+ * TILE-FLIP TRANSITION (CSS shader)
1003
+ *********************************************/
1004
+
1005
+ .reveal.tileflip .slides section.present {
1006
+ -webkit-transform: none;
1007
+ -webkit-transition-duration: 800ms;
1008
+
1009
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1010
+ amount 0, randomness 0, flipAxis 0 1 0, tileOutline 1
1011
+ );
1012
+ }
1013
+
1014
+ .reveal.tileflip .slides section.past {
1015
+ -webkit-transform: none;
1016
+ -webkit-transition-duration: 800ms;
1017
+
1018
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1019
+ amount 1, randomness 0, flipAxis 0 1 0, tileOutline 1
1020
+ );
1021
+ }
1022
+
1023
+ .reveal.tileflip .slides section.future {
1024
+ -webkit-transform: none;
1025
+ -webkit-transition-duration: 800ms;
1026
+
1027
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1028
+ amount 1, randomness 0, flipAxis 0 1 0, tileOutline 1
1029
+ );
1030
+ }
1031
+
1032
+ .reveal.tileflip .slides>section>section.present {
1033
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1034
+ amount 0, randomness 2, flipAxis 1 0 0, tileOutline 1
1035
+ );
1036
+ }
1037
+
1038
+ .reveal.tileflip .slides>section>section.past {
1039
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1040
+ amount 1, randomness 2, flipAxis 1 0 0, tileOutline 1
1041
+ );
1042
+ }
1043
+
1044
+ .reveal.tileflip .slides>section>section.future {
1045
+ -webkit-filter: custom( url(shaders/tile-flip.vs) mix(url(shaders/tile-flip.fs) multiply source-atop), 10 10 border-box detached, transform perspective(1000) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg),
1046
+ amount 1, randomness 2, flipAxis 1 0 0, tileOutline 1
1047
+ );
1048
+ }
1049
+
1050
+ /*********************************************
1051
+ * FADE TRANSITION
1052
+ *********************************************/
1053
+
1054
+ .reveal.fade .slides section,
1055
+ .reveal.fade .slides>section>section {
1056
+ -webkit-transform: none;
1057
+ -moz-transform: none;
1058
+ -ms-transform: none;
1059
+ -o-transform: none;
1060
+ transform: none;
1061
+
1062
+ -webkit-transition: opacity 0.5s;
1063
+ -moz-transition: opacity 0.5s;
1064
+ -ms-transition: opacity 0.5s;
1065
+ -o-transition: opacity 0.5s;
1066
+ transition: opacity 0.5s;
1067
+ }
1068
+
1069
+
1070
+ .reveal.fade.overview .slides section,
1071
+ .reveal.fade.overview .slides>section>section,
1072
+ .reveal.fade.exit-overview .slides section,
1073
+ .reveal.fade.exit-overview .slides>section>section {
1074
+ -webkit-transition: none;
1075
+ -moz-transition: none;
1076
+ -ms-transition: none;
1077
+ -o-transition: none;
1078
+ transition: none;
1079
+ }
1080
+
1081
+ /*********************************************
1082
+ * NO TRANSITION
1083
+ *********************************************/
1084
+
1085
+ .reveal.none .slides section {
1086
+ -webkit-transform: none;
1087
+ -moz-transform: none;
1088
+ -ms-transform: none;
1089
+ -o-transform: none;
1090
+ transform: none;
1091
+
1092
+ -webkit-transition: none;
1093
+ -moz-transition: none;
1094
+ -ms-transition: none;
1095
+ -o-transition: none;
1096
+ transition: none;
1097
+ }
1098
+
1099
+
1100
+ /*********************************************
1101
+ * OVERVIEW
1102
+ *********************************************/
1103
+
1104
+ .reveal.overview .slides {
1105
+ -webkit-perspective-origin: 0% 0%;
1106
+ -moz-perspective-origin: 0% 0%;
1107
+ -ms-perspective-origin: 0% 0%;
1108
+ perspective-origin: 0% 0%;
1109
+
1110
+ -webkit-perspective: 700px;
1111
+ -moz-perspective: 700px;
1112
+ -ms-perspective: 700px;
1113
+ perspective: 700px;
1114
+ }
1115
+
1116
+ .reveal.overview .slides section {
1117
+ height: 600px;
1118
+ overflow: hidden;
1119
+ opacity: 1!important;
1120
+ visibility: visible!important;
1121
+ cursor: pointer;
1122
+ background: rgba(0,0,0,0.1);
1123
+ }
1124
+ .reveal.overview .slides section .fragment {
1125
+ opacity: 1;
1126
+ }
1127
+ .reveal.overview .slides section:after,
1128
+ .reveal.overview .slides section:before {
1129
+ display: none !important;
1130
+ }
1131
+ .reveal.overview .slides section>section {
1132
+ opacity: 1;
1133
+ cursor: pointer;
1134
+ }
1135
+ .reveal.overview .slides section:hover {
1136
+ background: rgba(0,0,0,0.3);
1137
+ }
1138
+ .reveal.overview .slides section.present {
1139
+ background: rgba(0,0,0,0.3);
1140
+ }
1141
+ .reveal.overview .slides>section.stack {
1142
+ padding: 0;
1143
+ background: none;
1144
+ overflow: visible;
1145
+ }
1146
+
1147
+
1148
+ /*********************************************
1149
+ * PAUSED MODE
1150
+ *********************************************/
1151
+
1152
+ .reveal .pause-overlay {
1153
+ position: absolute;
1154
+ top: 0;
1155
+ left: 0;
1156
+ width: 100%;
1157
+ height: 100%;
1158
+ background: black;
1159
+ visibility: hidden;
1160
+ opacity: 0;
1161
+ z-index: 100;
1162
+
1163
+ -webkit-transition: all 1s ease;
1164
+ -moz-transition: all 1s ease;
1165
+ -ms-transition: all 1s ease;
1166
+ -o-transition: all 1s ease;
1167
+ transition: all 1s ease;
1168
+ }
1169
+ .reveal.paused .pause-overlay {
1170
+ visibility: visible;
1171
+ opacity: 1;
1172
+ }
1173
+
1174
+
1175
+ /*********************************************
1176
+ * FALLBACK
1177
+ *********************************************/
1178
+
1179
+ .no-transforms {
1180
+ overflow-y: auto;
1181
+ }
1182
+
1183
+ .no-transforms .slides {
1184
+ top: 0;
1185
+ left: 50%;
1186
+ margin: 0;
1187
+ text-align: center;
1188
+ }
1189
+
1190
+ .no-transforms .slides section {
1191
+ display: block!important;
1192
+ opacity: 1!important;
1193
+ position: relative!important;
1194
+ height: auto;
1195
+ min-height: auto;
1196
+ top: 0;
1197
+ left: -50%;
1198
+ margin: 70px 0;
1199
+
1200
+ -webkit-transform: none;
1201
+ -moz-transform: none;
1202
+ -ms-transform: none;
1203
+ transform: none;
1204
+ }
1205
+
1206
+ .no-transforms .slides section section {
1207
+ left: 0;
1208
+ }
1209
+
1210
+ .no-transition {
1211
+ -webkit-transition: none;
1212
+ -moz-transition: none;
1213
+ -ms-transition: none;
1214
+ -o-transition: none;
1215
+ transition: none;
1216
+ }
1217
+
1218
+
1219
+ /*********************************************
1220
+ * BACKGROUND STATES
1221
+ *********************************************/
1222
+
1223
+ .reveal .state-background {
1224
+ position: absolute;
1225
+ width: 100%;
1226
+ height: 100%;
1227
+ background: rgba( 0, 0, 0, 0 );
1228
+
1229
+ -webkit-transition: background 800ms ease;
1230
+ -moz-transition: background 800ms ease;
1231
+ -ms-transition: background 800ms ease;
1232
+ -o-transition: background 800ms ease;
1233
+ transition: background 800ms ease;
1234
+ }
1235
+ .alert .reveal .state-background {
1236
+ background: rgba( 200, 50, 30, 0.6 );
1237
+ }
1238
+ .soothe .reveal .state-background {
1239
+ background: rgba( 50, 200, 90, 0.4 );
1240
+ }
1241
+ .blackout .reveal .state-background {
1242
+ background: rgba( 0, 0, 0, 0.6 );
1243
+ }
1244
+
1245
+
1246
+ /*********************************************
1247
+ * RTL SUPPORT
1248
+ *********************************************/
1249
+
1250
+ .reveal.rtl .slides,
1251
+ .reveal.rtl .slides h1,
1252
+ .reveal.rtl .slides h2,
1253
+ .reveal.rtl .slides h3,
1254
+ .reveal.rtl .slides h4,
1255
+ .reveal.rtl .slides h5,
1256
+ .reveal.rtl .slides h6 {
1257
+ direction: rtl;
1258
+ font-family: sans-serif;
1259
+ }
1260
+
1261
+ .reveal.rtl pre,
1262
+ .reveal.rtl code {
1263
+ direction: ltr;
1264
+ }
1265
+
1266
+ .reveal.rtl ol,
1267
+ .reveal.rtl ul {
1268
+ text-align: right;
1269
+ }
1270
+
1271
+
1272
+ /*********************************************
1273
+ * SPEAKER NOTES
1274
+ *********************************************/
1275
+
1276
+ .reveal aside.notes {
1277
+ display: none;
1278
+ }
1279
+
1280
+
1281
+ /*********************************************
1282
+ * ZOOM PLUGIN
1283
+ *********************************************/
1284
+
1285
+ .zoomed .reveal *,
1286
+ .zoomed .reveal *:before,
1287
+ .zoomed .reveal *:after {
1288
+ -webkit-transform: none !important;
1289
+ -moz-transform: none !important;
1290
+ -ms-transform: none !important;
1291
+ transform: none !important;
1292
+
1293
+ -webkit-backface-visibility: visible !important;
1294
+ -moz-backface-visibility: visible !important;
1295
+ -ms-backface-visibility: visible !important;
1296
+ backface-visibility: visible !important;
1297
+ }
1298
+
1299
+ .zoomed .reveal .progress,
1300
+ .zoomed .reveal .controls {
1301
+ opacity: 0;
1302
+ }
1303
+
1304
+ .zoomed .reveal .roll span {
1305
+ background: none;
1306
+ }
1307
+
1308
+ .zoomed .reveal .roll span:after {
1309
+ visibility: hidden;
1310
+ }
1311
+
1312
+