reveal-ck 3.8.1 → 3.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/files/reveal.js/Gruntfile.js +41 -40
- data/files/reveal.js/LICENSE +1 -1
- data/files/reveal.js/README.md +189 -107
- data/files/reveal.js/bower.json +2 -2
- data/files/reveal.js/css/print/pdf.css +10 -18
- data/files/reveal.js/css/reveal.css +344 -140
- data/files/reveal.js/css/reveal.scss +371 -76
- data/files/reveal.js/css/theme/README.md +2 -2
- data/files/reveal.js/css/theme/beige.css +19 -38
- data/files/reveal.js/css/theme/black.css +19 -38
- data/files/reveal.js/css/theme/blood.css +19 -38
- data/files/reveal.js/css/theme/league.css +19 -38
- data/files/reveal.js/css/theme/moon.css +19 -38
- data/files/reveal.js/css/theme/night.css +19 -38
- data/files/reveal.js/css/theme/serif.css +19 -38
- data/files/reveal.js/css/theme/simple.css +19 -38
- data/files/reveal.js/css/theme/sky.css +19 -38
- data/files/reveal.js/css/theme/solarized.css +19 -38
- data/files/reveal.js/css/theme/template/theme.scss +18 -45
- data/files/reveal.js/css/theme/white.css +19 -38
- data/files/reveal.js/demo.html +13 -7
- data/files/reveal.js/js/reveal.js +707 -242
- data/files/reveal.js/lib/js/head.min.js +1 -4
- data/files/reveal.js/package.json +16 -17
- data/files/reveal.js/plugin/highlight/highlight.js +3 -4
- data/files/reveal.js/plugin/markdown/example.html +7 -0
- data/files/reveal.js/plugin/markdown/example.md +5 -0
- data/files/reveal.js/plugin/markdown/markdown.js +1 -1
- data/files/reveal.js/plugin/math/math.js +4 -4
- data/files/reveal.js/plugin/multiplex/master.js +4 -1
- data/files/reveal.js/plugin/multiplex/package.json +1 -1
- data/files/reveal.js/plugin/notes/notes.html +48 -2
- data/files/reveal.js/plugin/notes/notes.js +9 -17
- data/files/reveal.js/plugin/print-pdf/print-pdf.js +9 -11
- data/files/reveal.js/plugin/search/search.js +127 -117
- data/files/reveal.js/plugin/zoom-js/zoom.js +16 -32
- data/files/reveal.js/test/qunit-2.5.0.css +436 -0
- data/files/reveal.js/test/qunit-2.5.0.js +5188 -0
- data/files/reveal.js/test/test-markdown-element-attributes.html +2 -2
- data/files/reveal.js/test/test-markdown-element-attributes.js +21 -23
- data/files/reveal.js/test/test-markdown-external.html +3 -3
- data/files/reveal.js/test/test-markdown-external.js +7 -11
- data/files/reveal.js/test/test-markdown-options.html +2 -2
- data/files/reveal.js/test/test-markdown-options.js +7 -6
- data/files/reveal.js/test/test-markdown-slide-attributes.html +2 -2
- data/files/reveal.js/test/test-markdown-slide-attributes.js +23 -26
- data/files/reveal.js/test/test-markdown.html +2 -2
- data/files/reveal.js/test/test-markdown.js +2 -6
- data/files/reveal.js/test/test-pdf.html +2 -2
- data/files/reveal.js/test/test-pdf.js +2 -5
- data/files/reveal.js/test/test.html +2 -2
- data/files/reveal.js/test/test.js +184 -188
- data/lib/reveal-ck/version.rb +1 -1
- metadata +4 -4
- data/files/reveal.js/test/qunit-1.12.0.css +0 -244
- data/files/reveal.js/test/qunit-1.12.0.js +0 -2212
@@ -28,8 +28,8 @@ body {
|
|
28
28
|
background: #e7ad52;
|
29
29
|
text-shadow: none; }
|
30
30
|
|
31
|
-
.reveal .slides
|
32
|
-
.reveal .slides
|
31
|
+
.reveal .slides section,
|
32
|
+
.reveal .slides section > section {
|
33
33
|
line-height: 1.3;
|
34
34
|
font-weight: inherit; }
|
35
35
|
|
@@ -120,10 +120,6 @@ body {
|
|
120
120
|
.reveal dd {
|
121
121
|
margin-left: 40px; }
|
122
122
|
|
123
|
-
.reveal q,
|
124
|
-
.reveal blockquote {
|
125
|
-
quotes: none; }
|
126
|
-
|
127
123
|
.reveal blockquote {
|
128
124
|
display: block;
|
129
125
|
position: relative;
|
@@ -154,7 +150,8 @@ body {
|
|
154
150
|
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
|
155
151
|
|
156
152
|
.reveal code {
|
157
|
-
font-family: monospace;
|
153
|
+
font-family: monospace;
|
154
|
+
text-transform: none; }
|
158
155
|
|
159
156
|
.reveal pre code {
|
160
157
|
display: block;
|
@@ -190,10 +187,12 @@ body {
|
|
190
187
|
border-bottom: none; }
|
191
188
|
|
192
189
|
.reveal sup {
|
193
|
-
vertical-align: super;
|
190
|
+
vertical-align: super;
|
191
|
+
font-size: smaller; }
|
194
192
|
|
195
193
|
.reveal sub {
|
196
|
-
vertical-align: sub;
|
194
|
+
vertical-align: sub;
|
195
|
+
font-size: smaller; }
|
197
196
|
|
198
197
|
.reveal small {
|
199
198
|
display: inline-block;
|
@@ -249,42 +248,24 @@ body {
|
|
249
248
|
/*********************************************
|
250
249
|
* NAVIGATION CONTROLS
|
251
250
|
*********************************************/
|
252
|
-
.reveal .controls
|
253
|
-
|
254
|
-
border-right-color: #e7ad52; }
|
255
|
-
|
256
|
-
.reveal .controls .navigate-right,
|
257
|
-
.reveal .controls .navigate-right.enabled {
|
258
|
-
border-left-color: #e7ad52; }
|
259
|
-
|
260
|
-
.reveal .controls .navigate-up,
|
261
|
-
.reveal .controls .navigate-up.enabled {
|
262
|
-
border-bottom-color: #e7ad52; }
|
263
|
-
|
264
|
-
.reveal .controls .navigate-down,
|
265
|
-
.reveal .controls .navigate-down.enabled {
|
266
|
-
border-top-color: #e7ad52; }
|
267
|
-
|
268
|
-
.reveal .controls .navigate-left.enabled:hover {
|
269
|
-
border-right-color: #f3d7ac; }
|
270
|
-
|
271
|
-
.reveal .controls .navigate-right.enabled:hover {
|
272
|
-
border-left-color: #f3d7ac; }
|
273
|
-
|
274
|
-
.reveal .controls .navigate-up.enabled:hover {
|
275
|
-
border-bottom-color: #f3d7ac; }
|
276
|
-
|
277
|
-
.reveal .controls .navigate-down.enabled:hover {
|
278
|
-
border-top-color: #f3d7ac; }
|
251
|
+
.reveal .controls {
|
252
|
+
color: #e7ad52; }
|
279
253
|
|
280
254
|
/*********************************************
|
281
255
|
* PROGRESS BAR
|
282
256
|
*********************************************/
|
283
257
|
.reveal .progress {
|
284
|
-
background: rgba(0, 0, 0, 0.2);
|
258
|
+
background: rgba(0, 0, 0, 0.2);
|
259
|
+
color: #e7ad52; }
|
285
260
|
|
286
261
|
.reveal .progress span {
|
287
|
-
background: #e7ad52;
|
288
262
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
289
263
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
290
264
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
265
|
+
|
266
|
+
/*********************************************
|
267
|
+
* PRINT BACKGROUND
|
268
|
+
*********************************************/
|
269
|
+
@media print {
|
270
|
+
.backgrounds {
|
271
|
+
background-color: #111; } }
|
@@ -30,8 +30,8 @@ body {
|
|
30
30
|
background: #26351C;
|
31
31
|
text-shadow: none; }
|
32
32
|
|
33
|
-
.reveal .slides
|
34
|
-
.reveal .slides
|
33
|
+
.reveal .slides section,
|
34
|
+
.reveal .slides section > section {
|
35
35
|
line-height: 1.3;
|
36
36
|
font-weight: inherit; }
|
37
37
|
|
@@ -122,10 +122,6 @@ body {
|
|
122
122
|
.reveal dd {
|
123
123
|
margin-left: 40px; }
|
124
124
|
|
125
|
-
.reveal q,
|
126
|
-
.reveal blockquote {
|
127
|
-
quotes: none; }
|
128
|
-
|
129
125
|
.reveal blockquote {
|
130
126
|
display: block;
|
131
127
|
position: relative;
|
@@ -156,7 +152,8 @@ body {
|
|
156
152
|
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
|
157
153
|
|
158
154
|
.reveal code {
|
159
|
-
font-family: monospace;
|
155
|
+
font-family: monospace;
|
156
|
+
text-transform: none; }
|
160
157
|
|
161
158
|
.reveal pre code {
|
162
159
|
display: block;
|
@@ -192,10 +189,12 @@ body {
|
|
192
189
|
border-bottom: none; }
|
193
190
|
|
194
191
|
.reveal sup {
|
195
|
-
vertical-align: super;
|
192
|
+
vertical-align: super;
|
193
|
+
font-size: smaller; }
|
196
194
|
|
197
195
|
.reveal sub {
|
198
|
-
vertical-align: sub;
|
196
|
+
vertical-align: sub;
|
197
|
+
font-size: smaller; }
|
199
198
|
|
200
199
|
.reveal small {
|
201
200
|
display: inline-block;
|
@@ -251,42 +250,24 @@ body {
|
|
251
250
|
/*********************************************
|
252
251
|
* NAVIGATION CONTROLS
|
253
252
|
*********************************************/
|
254
|
-
.reveal .controls
|
255
|
-
|
256
|
-
border-right-color: #51483D; }
|
257
|
-
|
258
|
-
.reveal .controls .navigate-right,
|
259
|
-
.reveal .controls .navigate-right.enabled {
|
260
|
-
border-left-color: #51483D; }
|
261
|
-
|
262
|
-
.reveal .controls .navigate-up,
|
263
|
-
.reveal .controls .navigate-up.enabled {
|
264
|
-
border-bottom-color: #51483D; }
|
265
|
-
|
266
|
-
.reveal .controls .navigate-down,
|
267
|
-
.reveal .controls .navigate-down.enabled {
|
268
|
-
border-top-color: #51483D; }
|
269
|
-
|
270
|
-
.reveal .controls .navigate-left.enabled:hover {
|
271
|
-
border-right-color: #8b7c69; }
|
272
|
-
|
273
|
-
.reveal .controls .navigate-right.enabled:hover {
|
274
|
-
border-left-color: #8b7c69; }
|
275
|
-
|
276
|
-
.reveal .controls .navigate-up.enabled:hover {
|
277
|
-
border-bottom-color: #8b7c69; }
|
278
|
-
|
279
|
-
.reveal .controls .navigate-down.enabled:hover {
|
280
|
-
border-top-color: #8b7c69; }
|
253
|
+
.reveal .controls {
|
254
|
+
color: #51483D; }
|
281
255
|
|
282
256
|
/*********************************************
|
283
257
|
* PROGRESS BAR
|
284
258
|
*********************************************/
|
285
259
|
.reveal .progress {
|
286
|
-
background: rgba(0, 0, 0, 0.2);
|
260
|
+
background: rgba(0, 0, 0, 0.2);
|
261
|
+
color: #51483D; }
|
287
262
|
|
288
263
|
.reveal .progress span {
|
289
|
-
background: #51483D;
|
290
264
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
291
265
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
292
266
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
267
|
+
|
268
|
+
/*********************************************
|
269
|
+
* PRINT BACKGROUND
|
270
|
+
*********************************************/
|
271
|
+
@media print {
|
272
|
+
.backgrounds {
|
273
|
+
background-color: #F0F1EB; } }
|
@@ -33,8 +33,8 @@ body {
|
|
33
33
|
background: rgba(0, 0, 0, 0.99);
|
34
34
|
text-shadow: none; }
|
35
35
|
|
36
|
-
.reveal .slides
|
37
|
-
.reveal .slides
|
36
|
+
.reveal .slides section,
|
37
|
+
.reveal .slides section > section {
|
38
38
|
line-height: 1.3;
|
39
39
|
font-weight: inherit; }
|
40
40
|
|
@@ -125,10 +125,6 @@ body {
|
|
125
125
|
.reveal dd {
|
126
126
|
margin-left: 40px; }
|
127
127
|
|
128
|
-
.reveal q,
|
129
|
-
.reveal blockquote {
|
130
|
-
quotes: none; }
|
131
|
-
|
132
128
|
.reveal blockquote {
|
133
129
|
display: block;
|
134
130
|
position: relative;
|
@@ -159,7 +155,8 @@ body {
|
|
159
155
|
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
|
160
156
|
|
161
157
|
.reveal code {
|
162
|
-
font-family: monospace;
|
158
|
+
font-family: monospace;
|
159
|
+
text-transform: none; }
|
163
160
|
|
164
161
|
.reveal pre code {
|
165
162
|
display: block;
|
@@ -195,10 +192,12 @@ body {
|
|
195
192
|
border-bottom: none; }
|
196
193
|
|
197
194
|
.reveal sup {
|
198
|
-
vertical-align: super;
|
195
|
+
vertical-align: super;
|
196
|
+
font-size: smaller; }
|
199
197
|
|
200
198
|
.reveal sub {
|
201
|
-
vertical-align: sub;
|
199
|
+
vertical-align: sub;
|
200
|
+
font-size: smaller; }
|
202
201
|
|
203
202
|
.reveal small {
|
204
203
|
display: inline-block;
|
@@ -254,42 +253,24 @@ body {
|
|
254
253
|
/*********************************************
|
255
254
|
* NAVIGATION CONTROLS
|
256
255
|
*********************************************/
|
257
|
-
.reveal .controls
|
258
|
-
|
259
|
-
border-right-color: #00008B; }
|
260
|
-
|
261
|
-
.reveal .controls .navigate-right,
|
262
|
-
.reveal .controls .navigate-right.enabled {
|
263
|
-
border-left-color: #00008B; }
|
264
|
-
|
265
|
-
.reveal .controls .navigate-up,
|
266
|
-
.reveal .controls .navigate-up.enabled {
|
267
|
-
border-bottom-color: #00008B; }
|
268
|
-
|
269
|
-
.reveal .controls .navigate-down,
|
270
|
-
.reveal .controls .navigate-down.enabled {
|
271
|
-
border-top-color: #00008B; }
|
272
|
-
|
273
|
-
.reveal .controls .navigate-left.enabled:hover {
|
274
|
-
border-right-color: #0000f1; }
|
275
|
-
|
276
|
-
.reveal .controls .navigate-right.enabled:hover {
|
277
|
-
border-left-color: #0000f1; }
|
278
|
-
|
279
|
-
.reveal .controls .navigate-up.enabled:hover {
|
280
|
-
border-bottom-color: #0000f1; }
|
281
|
-
|
282
|
-
.reveal .controls .navigate-down.enabled:hover {
|
283
|
-
border-top-color: #0000f1; }
|
256
|
+
.reveal .controls {
|
257
|
+
color: #00008B; }
|
284
258
|
|
285
259
|
/*********************************************
|
286
260
|
* PROGRESS BAR
|
287
261
|
*********************************************/
|
288
262
|
.reveal .progress {
|
289
|
-
background: rgba(0, 0, 0, 0.2);
|
263
|
+
background: rgba(0, 0, 0, 0.2);
|
264
|
+
color: #00008B; }
|
290
265
|
|
291
266
|
.reveal .progress span {
|
292
|
-
background: #00008B;
|
293
267
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
294
268
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
295
269
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
270
|
+
|
271
|
+
/*********************************************
|
272
|
+
* PRINT BACKGROUND
|
273
|
+
*********************************************/
|
274
|
+
@media print {
|
275
|
+
.backgrounds {
|
276
|
+
background-color: #fff; } }
|
@@ -37,8 +37,8 @@ body {
|
|
37
37
|
background: #134674;
|
38
38
|
text-shadow: none; }
|
39
39
|
|
40
|
-
.reveal .slides
|
41
|
-
.reveal .slides
|
40
|
+
.reveal .slides section,
|
41
|
+
.reveal .slides section > section {
|
42
42
|
line-height: 1.3;
|
43
43
|
font-weight: inherit; }
|
44
44
|
|
@@ -129,10 +129,6 @@ body {
|
|
129
129
|
.reveal dd {
|
130
130
|
margin-left: 40px; }
|
131
131
|
|
132
|
-
.reveal q,
|
133
|
-
.reveal blockquote {
|
134
|
-
quotes: none; }
|
135
|
-
|
136
132
|
.reveal blockquote {
|
137
133
|
display: block;
|
138
134
|
position: relative;
|
@@ -163,7 +159,8 @@ body {
|
|
163
159
|
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
|
164
160
|
|
165
161
|
.reveal code {
|
166
|
-
font-family: monospace;
|
162
|
+
font-family: monospace;
|
163
|
+
text-transform: none; }
|
167
164
|
|
168
165
|
.reveal pre code {
|
169
166
|
display: block;
|
@@ -199,10 +196,12 @@ body {
|
|
199
196
|
border-bottom: none; }
|
200
197
|
|
201
198
|
.reveal sup {
|
202
|
-
vertical-align: super;
|
199
|
+
vertical-align: super;
|
200
|
+
font-size: smaller; }
|
203
201
|
|
204
202
|
.reveal sub {
|
205
|
-
vertical-align: sub;
|
203
|
+
vertical-align: sub;
|
204
|
+
font-size: smaller; }
|
206
205
|
|
207
206
|
.reveal small {
|
208
207
|
display: inline-block;
|
@@ -258,42 +257,24 @@ body {
|
|
258
257
|
/*********************************************
|
259
258
|
* NAVIGATION CONTROLS
|
260
259
|
*********************************************/
|
261
|
-
.reveal .controls
|
262
|
-
|
263
|
-
border-right-color: #3b759e; }
|
264
|
-
|
265
|
-
.reveal .controls .navigate-right,
|
266
|
-
.reveal .controls .navigate-right.enabled {
|
267
|
-
border-left-color: #3b759e; }
|
268
|
-
|
269
|
-
.reveal .controls .navigate-up,
|
270
|
-
.reveal .controls .navigate-up.enabled {
|
271
|
-
border-bottom-color: #3b759e; }
|
272
|
-
|
273
|
-
.reveal .controls .navigate-down,
|
274
|
-
.reveal .controls .navigate-down.enabled {
|
275
|
-
border-top-color: #3b759e; }
|
276
|
-
|
277
|
-
.reveal .controls .navigate-left.enabled:hover {
|
278
|
-
border-right-color: #74a7cb; }
|
279
|
-
|
280
|
-
.reveal .controls .navigate-right.enabled:hover {
|
281
|
-
border-left-color: #74a7cb; }
|
282
|
-
|
283
|
-
.reveal .controls .navigate-up.enabled:hover {
|
284
|
-
border-bottom-color: #74a7cb; }
|
285
|
-
|
286
|
-
.reveal .controls .navigate-down.enabled:hover {
|
287
|
-
border-top-color: #74a7cb; }
|
260
|
+
.reveal .controls {
|
261
|
+
color: #3b759e; }
|
288
262
|
|
289
263
|
/*********************************************
|
290
264
|
* PROGRESS BAR
|
291
265
|
*********************************************/
|
292
266
|
.reveal .progress {
|
293
|
-
background: rgba(0, 0, 0, 0.2);
|
267
|
+
background: rgba(0, 0, 0, 0.2);
|
268
|
+
color: #3b759e; }
|
294
269
|
|
295
270
|
.reveal .progress span {
|
296
|
-
background: #3b759e;
|
297
271
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
298
272
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
299
273
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
274
|
+
|
275
|
+
/*********************************************
|
276
|
+
* PRINT BACKGROUND
|
277
|
+
*********************************************/
|
278
|
+
@media print {
|
279
|
+
.backgrounds {
|
280
|
+
background-color: #f7fbfc; } }
|
@@ -34,8 +34,8 @@ body {
|
|
34
34
|
background: #d33682;
|
35
35
|
text-shadow: none; }
|
36
36
|
|
37
|
-
.reveal .slides
|
38
|
-
.reveal .slides
|
37
|
+
.reveal .slides section,
|
38
|
+
.reveal .slides section > section {
|
39
39
|
line-height: 1.3;
|
40
40
|
font-weight: inherit; }
|
41
41
|
|
@@ -126,10 +126,6 @@ body {
|
|
126
126
|
.reveal dd {
|
127
127
|
margin-left: 40px; }
|
128
128
|
|
129
|
-
.reveal q,
|
130
|
-
.reveal blockquote {
|
131
|
-
quotes: none; }
|
132
|
-
|
133
129
|
.reveal blockquote {
|
134
130
|
display: block;
|
135
131
|
position: relative;
|
@@ -160,7 +156,8 @@ body {
|
|
160
156
|
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
|
161
157
|
|
162
158
|
.reveal code {
|
163
|
-
font-family: monospace;
|
159
|
+
font-family: monospace;
|
160
|
+
text-transform: none; }
|
164
161
|
|
165
162
|
.reveal pre code {
|
166
163
|
display: block;
|
@@ -196,10 +193,12 @@ body {
|
|
196
193
|
border-bottom: none; }
|
197
194
|
|
198
195
|
.reveal sup {
|
199
|
-
vertical-align: super;
|
196
|
+
vertical-align: super;
|
197
|
+
font-size: smaller; }
|
200
198
|
|
201
199
|
.reveal sub {
|
202
|
-
vertical-align: sub;
|
200
|
+
vertical-align: sub;
|
201
|
+
font-size: smaller; }
|
203
202
|
|
204
203
|
.reveal small {
|
205
204
|
display: inline-block;
|
@@ -255,42 +254,24 @@ body {
|
|
255
254
|
/*********************************************
|
256
255
|
* NAVIGATION CONTROLS
|
257
256
|
*********************************************/
|
258
|
-
.reveal .controls
|
259
|
-
|
260
|
-
border-right-color: #268bd2; }
|
261
|
-
|
262
|
-
.reveal .controls .navigate-right,
|
263
|
-
.reveal .controls .navigate-right.enabled {
|
264
|
-
border-left-color: #268bd2; }
|
265
|
-
|
266
|
-
.reveal .controls .navigate-up,
|
267
|
-
.reveal .controls .navigate-up.enabled {
|
268
|
-
border-bottom-color: #268bd2; }
|
269
|
-
|
270
|
-
.reveal .controls .navigate-down,
|
271
|
-
.reveal .controls .navigate-down.enabled {
|
272
|
-
border-top-color: #268bd2; }
|
273
|
-
|
274
|
-
.reveal .controls .navigate-left.enabled:hover {
|
275
|
-
border-right-color: #78b9e6; }
|
276
|
-
|
277
|
-
.reveal .controls .navigate-right.enabled:hover {
|
278
|
-
border-left-color: #78b9e6; }
|
279
|
-
|
280
|
-
.reveal .controls .navigate-up.enabled:hover {
|
281
|
-
border-bottom-color: #78b9e6; }
|
282
|
-
|
283
|
-
.reveal .controls .navigate-down.enabled:hover {
|
284
|
-
border-top-color: #78b9e6; }
|
257
|
+
.reveal .controls {
|
258
|
+
color: #268bd2; }
|
285
259
|
|
286
260
|
/*********************************************
|
287
261
|
* PROGRESS BAR
|
288
262
|
*********************************************/
|
289
263
|
.reveal .progress {
|
290
|
-
background: rgba(0, 0, 0, 0.2);
|
264
|
+
background: rgba(0, 0, 0, 0.2);
|
265
|
+
color: #268bd2; }
|
291
266
|
|
292
267
|
.reveal .progress span {
|
293
|
-
background: #268bd2;
|
294
268
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
295
269
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
296
270
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
271
|
+
|
272
|
+
/*********************************************
|
273
|
+
* PRINT BACKGROUND
|
274
|
+
*********************************************/
|
275
|
+
@media print {
|
276
|
+
.backgrounds {
|
277
|
+
background-color: #fdf6e3; } }
|