reveal-ck 3.6.0 → 3.7.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.
- checksums.yaml +4 -4
- data/files/reveal.js/CONTRIBUTING.md +4 -0
- data/files/reveal.js/Gruntfile.js +44 -26
- data/files/reveal.js/LICENSE +1 -1
- data/files/reveal.js/README.md +375 -161
- data/files/reveal.js/bower.json +27 -0
- data/files/reveal.js/css/print/paper.css +4 -3
- data/files/reveal.js/css/print/pdf.css +53 -38
- data/files/reveal.js/css/reveal.css +452 -206
- data/files/reveal.js/css/reveal.scss +328 -175
- data/files/reveal.js/css/theme/README.md +2 -6
- data/files/reveal.js/css/theme/beige.css +81 -50
- data/files/reveal.js/css/theme/black.css +70 -39
- data/files/reveal.js/css/theme/blood.css +81 -57
- data/files/reveal.js/css/theme/league.css +75 -44
- data/files/reveal.js/css/theme/moon.css +75 -44
- data/files/reveal.js/css/theme/night.css +70 -39
- data/files/reveal.js/css/theme/serif.css +72 -41
- data/files/reveal.js/css/theme/simple.css +72 -38
- data/files/reveal.js/css/theme/sky.css +75 -44
- data/files/reveal.js/css/theme/solarized.css +75 -44
- data/files/reveal.js/css/theme/source/black.scss +2 -2
- data/files/reveal.js/css/theme/source/blood.scss +3 -16
- data/files/reveal.js/css/theme/source/night.scss +0 -1
- data/files/reveal.js/css/theme/source/simple.scss +5 -0
- data/files/reveal.js/css/theme/source/white.scss +2 -2
- data/files/reveal.js/css/theme/template/settings.scss +1 -1
- data/files/reveal.js/css/theme/template/theme.scss +36 -23
- data/files/reveal.js/css/theme/white.css +75 -44
- data/files/reveal.js/demo.html +410 -0
- data/files/reveal.js/index.html +14 -373
- data/files/reveal.js/js/reveal.js +1186 -350
- data/files/reveal.js/lib/css/zenburn.css +41 -78
- data/files/reveal.js/lib/js/head.min.js +9 -8
- data/files/reveal.js/package.json +22 -26
- data/files/reveal.js/plugin/highlight/highlight.js +52 -4
- data/files/reveal.js/plugin/markdown/example.html +1 -1
- data/files/reveal.js/plugin/markdown/markdown.js +40 -21
- data/files/reveal.js/plugin/markdown/marked.js +2 -33
- data/files/reveal.js/plugin/math/math.js +5 -2
- data/files/reveal.js/plugin/multiplex/client.js +1 -1
- data/files/reveal.js/plugin/multiplex/index.js +24 -16
- data/files/reveal.js/plugin/multiplex/master.js +22 -42
- data/files/reveal.js/plugin/multiplex/package.json +19 -0
- data/files/reveal.js/plugin/notes-server/client.js +6 -1
- data/files/reveal.js/plugin/notes-server/index.js +17 -14
- data/files/reveal.js/plugin/notes-server/notes.html +215 -26
- data/files/reveal.js/plugin/notes/notes.html +372 -32
- data/files/reveal.js/plugin/notes/notes.js +40 -7
- data/files/reveal.js/plugin/print-pdf/print-pdf.js +47 -26
- data/files/reveal.js/plugin/zoom-js/zoom.js +12 -2
- data/files/reveal.js/test/examples/math.html +1 -1
- data/files/reveal.js/test/examples/slide-backgrounds.html +1 -1
- data/files/reveal.js/test/examples/slide-transitions.html +101 -0
- data/files/reveal.js/test/simple.md +12 -0
- data/files/reveal.js/test/test-markdown-element-attributes.html +3 -3
- data/files/reveal.js/test/test-markdown-element-attributes.js +1 -1
- data/files/reveal.js/test/test-markdown-external.html +36 -0
- data/files/reveal.js/test/test-markdown-external.js +24 -0
- data/files/reveal.js/test/test-markdown-options.html +41 -0
- data/files/reveal.js/test/test-markdown-options.js +26 -0
- data/files/reveal.js/test/test-markdown.html +1 -1
- data/files/reveal.js/test/test.html +5 -1
- data/files/reveal.js/test/test.js +26 -1
- data/lib/reveal-ck/version.rb +1 -1
- metadata +11 -4
- data/files/reveal.js/plugin/leap/leap.js +0 -159
- data/files/reveal.js/plugin/remotes/remotes.js +0 -39
@@ -1,4 +1,3 @@
|
|
1
|
-
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
|
2
1
|
/**
|
3
2
|
* Blood theme for reveal.js
|
4
3
|
* Author: Walther http://github.com/Walther
|
@@ -10,22 +9,17 @@
|
|
10
9
|
* For other themes, change $codeBackground accordingly.
|
11
10
|
*
|
12
11
|
*/
|
12
|
+
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
|
13
13
|
/*********************************************
|
14
14
|
* GLOBAL STYLES
|
15
15
|
*********************************************/
|
16
16
|
body {
|
17
17
|
background: #222;
|
18
|
-
background:
|
19
|
-
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222));
|
20
|
-
background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
21
|
-
background: -o-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
22
|
-
background: -ms-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
23
|
-
background: radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
24
|
-
background-color: #2b2b2b; }
|
18
|
+
background-color: #222; }
|
25
19
|
|
26
20
|
.reveal {
|
27
|
-
font-family: Ubuntu,
|
28
|
-
font-size:
|
21
|
+
font-family: Ubuntu, "sans-serif";
|
22
|
+
font-size: 40px;
|
29
23
|
font-weight: normal;
|
30
24
|
color: #eee; }
|
31
25
|
|
@@ -34,17 +28,28 @@ body {
|
|
34
28
|
background: #a23;
|
35
29
|
text-shadow: none; }
|
36
30
|
|
37
|
-
|
31
|
+
::-moz-selection {
|
32
|
+
color: #fff;
|
33
|
+
background: #a23;
|
34
|
+
text-shadow: none; }
|
35
|
+
|
36
|
+
.reveal .slides > section,
|
37
|
+
.reveal .slides > section > section {
|
38
38
|
line-height: 1.3;
|
39
39
|
font-weight: inherit; }
|
40
40
|
|
41
41
|
/*********************************************
|
42
42
|
* HEADERS
|
43
43
|
*********************************************/
|
44
|
-
.reveal h1,
|
44
|
+
.reveal h1,
|
45
|
+
.reveal h2,
|
46
|
+
.reveal h3,
|
47
|
+
.reveal h4,
|
48
|
+
.reveal h5,
|
49
|
+
.reveal h6 {
|
45
50
|
margin: 0 0 20px 0;
|
46
51
|
color: #eee;
|
47
|
-
font-family: Ubuntu,
|
52
|
+
font-family: Ubuntu, "sans-serif";
|
48
53
|
font-weight: normal;
|
49
54
|
line-height: 1.2;
|
50
55
|
letter-spacing: normal;
|
@@ -75,17 +80,22 @@ body {
|
|
75
80
|
line-height: 1.3; }
|
76
81
|
|
77
82
|
/* Ensure certain elements are never larger than the slide itself */
|
78
|
-
.reveal img,
|
83
|
+
.reveal img,
|
84
|
+
.reveal video,
|
85
|
+
.reveal iframe {
|
79
86
|
max-width: 95%;
|
80
87
|
max-height: 95%; }
|
81
88
|
|
82
|
-
.reveal strong,
|
89
|
+
.reveal strong,
|
90
|
+
.reveal b {
|
83
91
|
font-weight: bold; }
|
84
92
|
|
85
93
|
.reveal em {
|
86
94
|
font-style: italic; }
|
87
95
|
|
88
|
-
.reveal ol,
|
96
|
+
.reveal ol,
|
97
|
+
.reveal dl,
|
98
|
+
.reveal ul {
|
89
99
|
display: inline-block;
|
90
100
|
text-align: left;
|
91
101
|
margin: 0 0 0 1em; }
|
@@ -102,7 +112,10 @@ body {
|
|
102
112
|
.reveal ul ul ul {
|
103
113
|
list-style-type: circle; }
|
104
114
|
|
105
|
-
.reveal ul ul,
|
115
|
+
.reveal ul ul,
|
116
|
+
.reveal ul ol,
|
117
|
+
.reveal ol ol,
|
118
|
+
.reveal ol ul {
|
106
119
|
display: block;
|
107
120
|
margin-left: 40px; }
|
108
121
|
|
@@ -112,7 +125,8 @@ body {
|
|
112
125
|
.reveal dd {
|
113
126
|
margin-left: 40px; }
|
114
127
|
|
115
|
-
.reveal q,
|
128
|
+
.reveal q,
|
129
|
+
.reveal blockquote {
|
116
130
|
quotes: none; }
|
117
131
|
|
118
132
|
.reveal blockquote {
|
@@ -125,7 +139,8 @@ body {
|
|
125
139
|
background: rgba(255, 255, 255, 0.05);
|
126
140
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
|
127
141
|
|
128
|
-
.reveal blockquote p:first-child,
|
142
|
+
.reveal blockquote p:first-child,
|
143
|
+
.reveal blockquote p:last-child {
|
129
144
|
display: inline-block; }
|
130
145
|
|
131
146
|
.reveal q {
|
@@ -151,9 +166,7 @@ body {
|
|
151
166
|
padding: 5px;
|
152
167
|
overflow: auto;
|
153
168
|
max-height: 400px;
|
154
|
-
word-wrap: normal;
|
155
|
-
background: #3F3F3F;
|
156
|
-
color: #DCDCDC; }
|
169
|
+
word-wrap: normal; }
|
157
170
|
|
158
171
|
.reveal table {
|
159
172
|
margin: auto;
|
@@ -163,12 +176,22 @@ body {
|
|
163
176
|
.reveal table th {
|
164
177
|
font-weight: bold; }
|
165
178
|
|
166
|
-
.reveal table th,
|
179
|
+
.reveal table th,
|
180
|
+
.reveal table td {
|
167
181
|
text-align: left;
|
168
182
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
169
183
|
border-bottom: 1px solid; }
|
170
184
|
|
171
|
-
.reveal table
|
185
|
+
.reveal table th[align="center"],
|
186
|
+
.reveal table td[align="center"] {
|
187
|
+
text-align: center; }
|
188
|
+
|
189
|
+
.reveal table th[align="right"],
|
190
|
+
.reveal table td[align="right"] {
|
191
|
+
text-align: right; }
|
192
|
+
|
193
|
+
.reveal table tbody tr:last-child th,
|
194
|
+
.reveal table tbody tr:last-child td {
|
172
195
|
border-bottom: none; }
|
173
196
|
|
174
197
|
.reveal sup {
|
@@ -192,18 +215,18 @@ body {
|
|
192
215
|
.reveal a {
|
193
216
|
color: #a23;
|
194
217
|
text-decoration: none;
|
195
|
-
-webkit-transition: color
|
196
|
-
-moz-transition: color
|
197
|
-
transition: color
|
218
|
+
-webkit-transition: color .15s ease;
|
219
|
+
-moz-transition: color .15s ease;
|
220
|
+
transition: color .15s ease; }
|
198
221
|
|
199
222
|
.reveal a:hover {
|
200
|
-
color: #
|
223
|
+
color: #dd5566;
|
201
224
|
text-shadow: none;
|
202
225
|
border: none; }
|
203
226
|
|
204
227
|
.reveal .roll span:after {
|
205
228
|
color: #fff;
|
206
|
-
background: #
|
229
|
+
background: #6a1520; }
|
207
230
|
|
208
231
|
/*********************************************
|
209
232
|
* IMAGES
|
@@ -214,10 +237,14 @@ body {
|
|
214
237
|
border: 4px solid #eee;
|
215
238
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
216
239
|
|
240
|
+
.reveal section img.plain {
|
241
|
+
border: 0;
|
242
|
+
box-shadow: none; }
|
243
|
+
|
217
244
|
.reveal a img {
|
218
|
-
-webkit-transition: all
|
219
|
-
-moz-transition: all
|
220
|
-
transition: all
|
245
|
+
-webkit-transition: all .15s linear;
|
246
|
+
-moz-transition: all .15s linear;
|
247
|
+
transition: all .15s linear; }
|
221
248
|
|
222
249
|
.reveal a:hover img {
|
223
250
|
background: rgba(255, 255, 255, 0.2);
|
@@ -227,29 +254,33 @@ body {
|
|
227
254
|
/*********************************************
|
228
255
|
* NAVIGATION CONTROLS
|
229
256
|
*********************************************/
|
230
|
-
.reveal .controls
|
257
|
+
.reveal .controls .navigate-left,
|
258
|
+
.reveal .controls .navigate-left.enabled {
|
231
259
|
border-right-color: #a23; }
|
232
260
|
|
233
|
-
.reveal .controls
|
261
|
+
.reveal .controls .navigate-right,
|
262
|
+
.reveal .controls .navigate-right.enabled {
|
234
263
|
border-left-color: #a23; }
|
235
264
|
|
236
|
-
.reveal .controls
|
265
|
+
.reveal .controls .navigate-up,
|
266
|
+
.reveal .controls .navigate-up.enabled {
|
237
267
|
border-bottom-color: #a23; }
|
238
268
|
|
239
|
-
.reveal .controls
|
269
|
+
.reveal .controls .navigate-down,
|
270
|
+
.reveal .controls .navigate-down.enabled {
|
240
271
|
border-top-color: #a23; }
|
241
272
|
|
242
|
-
.reveal .controls
|
243
|
-
border-right-color: #
|
273
|
+
.reveal .controls .navigate-left.enabled:hover {
|
274
|
+
border-right-color: #dd5566; }
|
244
275
|
|
245
|
-
.reveal .controls
|
246
|
-
border-left-color: #
|
276
|
+
.reveal .controls .navigate-right.enabled:hover {
|
277
|
+
border-left-color: #dd5566; }
|
247
278
|
|
248
|
-
.reveal .controls
|
249
|
-
border-bottom-color: #
|
279
|
+
.reveal .controls .navigate-up.enabled:hover {
|
280
|
+
border-bottom-color: #dd5566; }
|
250
281
|
|
251
|
-
.reveal .controls
|
252
|
-
border-top-color: #
|
282
|
+
.reveal .controls .navigate-down.enabled:hover {
|
283
|
+
border-top-color: #dd5566; }
|
253
284
|
|
254
285
|
/*********************************************
|
255
286
|
* PROGRESS BAR
|
@@ -263,25 +294,18 @@ body {
|
|
263
294
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
264
295
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
265
296
|
|
266
|
-
/*********************************************
|
267
|
-
* SLIDE NUMBER
|
268
|
-
*********************************************/
|
269
|
-
.reveal .slide-number {
|
270
|
-
color: #a23; }
|
271
|
-
|
272
297
|
.reveal p {
|
273
298
|
font-weight: 300;
|
274
299
|
text-shadow: 1px 1px #222; }
|
275
300
|
|
276
|
-
.reveal h1,
|
301
|
+
.reveal h1,
|
302
|
+
.reveal h2,
|
303
|
+
.reveal h3,
|
304
|
+
.reveal h4,
|
305
|
+
.reveal h5,
|
306
|
+
.reveal h6 {
|
277
307
|
font-weight: 700; }
|
278
308
|
|
279
|
-
.reveal a, .reveal a:hover {
|
280
|
-
text-shadow: 2px 2px 2px #000; }
|
281
|
-
|
282
|
-
.reveal small a, .reveal small a:hover {
|
283
|
-
text-shadow: 1px 1px 1px #000; }
|
284
|
-
|
285
309
|
.reveal p code {
|
286
310
|
background-color: #23241f;
|
287
311
|
display: inline-block;
|
@@ -1,5 +1,3 @@
|
|
1
|
-
@import url(../../lib/font/league-gothic/league-gothic.css);
|
2
|
-
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
3
1
|
/**
|
4
2
|
* League theme for reveal.js.
|
5
3
|
*
|
@@ -7,6 +5,8 @@
|
|
7
5
|
*
|
8
6
|
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
9
7
|
*/
|
8
|
+
@import url(../../lib/font/league-gothic/league-gothic.css);
|
9
|
+
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
10
10
|
/*********************************************
|
11
11
|
* GLOBAL STYLES
|
12
12
|
*********************************************/
|
@@ -21,8 +21,8 @@ body {
|
|
21
21
|
background-color: #2b2b2b; }
|
22
22
|
|
23
23
|
.reveal {
|
24
|
-
font-family:
|
25
|
-
font-size:
|
24
|
+
font-family: "Lato", sans-serif;
|
25
|
+
font-size: 40px;
|
26
26
|
font-weight: normal;
|
27
27
|
color: #eee; }
|
28
28
|
|
@@ -31,17 +31,28 @@ body {
|
|
31
31
|
background: #FF5E99;
|
32
32
|
text-shadow: none; }
|
33
33
|
|
34
|
-
|
34
|
+
::-moz-selection {
|
35
|
+
color: #fff;
|
36
|
+
background: #FF5E99;
|
37
|
+
text-shadow: none; }
|
38
|
+
|
39
|
+
.reveal .slides > section,
|
40
|
+
.reveal .slides > section > section {
|
35
41
|
line-height: 1.3;
|
36
42
|
font-weight: inherit; }
|
37
43
|
|
38
44
|
/*********************************************
|
39
45
|
* HEADERS
|
40
46
|
*********************************************/
|
41
|
-
.reveal h1,
|
47
|
+
.reveal h1,
|
48
|
+
.reveal h2,
|
49
|
+
.reveal h3,
|
50
|
+
.reveal h4,
|
51
|
+
.reveal h5,
|
52
|
+
.reveal h6 {
|
42
53
|
margin: 0 0 20px 0;
|
43
54
|
color: #eee;
|
44
|
-
font-family:
|
55
|
+
font-family: "League Gothic", Impact, sans-serif;
|
45
56
|
font-weight: normal;
|
46
57
|
line-height: 1.2;
|
47
58
|
letter-spacing: normal;
|
@@ -72,17 +83,22 @@ body {
|
|
72
83
|
line-height: 1.3; }
|
73
84
|
|
74
85
|
/* Ensure certain elements are never larger than the slide itself */
|
75
|
-
.reveal img,
|
86
|
+
.reveal img,
|
87
|
+
.reveal video,
|
88
|
+
.reveal iframe {
|
76
89
|
max-width: 95%;
|
77
90
|
max-height: 95%; }
|
78
91
|
|
79
|
-
.reveal strong,
|
92
|
+
.reveal strong,
|
93
|
+
.reveal b {
|
80
94
|
font-weight: bold; }
|
81
95
|
|
82
96
|
.reveal em {
|
83
97
|
font-style: italic; }
|
84
98
|
|
85
|
-
.reveal ol,
|
99
|
+
.reveal ol,
|
100
|
+
.reveal dl,
|
101
|
+
.reveal ul {
|
86
102
|
display: inline-block;
|
87
103
|
text-align: left;
|
88
104
|
margin: 0 0 0 1em; }
|
@@ -99,7 +115,10 @@ body {
|
|
99
115
|
.reveal ul ul ul {
|
100
116
|
list-style-type: circle; }
|
101
117
|
|
102
|
-
.reveal ul ul,
|
118
|
+
.reveal ul ul,
|
119
|
+
.reveal ul ol,
|
120
|
+
.reveal ol ol,
|
121
|
+
.reveal ol ul {
|
103
122
|
display: block;
|
104
123
|
margin-left: 40px; }
|
105
124
|
|
@@ -109,7 +128,8 @@ body {
|
|
109
128
|
.reveal dd {
|
110
129
|
margin-left: 40px; }
|
111
130
|
|
112
|
-
.reveal q,
|
131
|
+
.reveal q,
|
132
|
+
.reveal blockquote {
|
113
133
|
quotes: none; }
|
114
134
|
|
115
135
|
.reveal blockquote {
|
@@ -122,7 +142,8 @@ body {
|
|
122
142
|
background: rgba(255, 255, 255, 0.05);
|
123
143
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
|
124
144
|
|
125
|
-
.reveal blockquote p:first-child,
|
145
|
+
.reveal blockquote p:first-child,
|
146
|
+
.reveal blockquote p:last-child {
|
126
147
|
display: inline-block; }
|
127
148
|
|
128
149
|
.reveal q {
|
@@ -148,9 +169,7 @@ body {
|
|
148
169
|
padding: 5px;
|
149
170
|
overflow: auto;
|
150
171
|
max-height: 400px;
|
151
|
-
word-wrap: normal;
|
152
|
-
background: #3F3F3F;
|
153
|
-
color: #DCDCDC; }
|
172
|
+
word-wrap: normal; }
|
154
173
|
|
155
174
|
.reveal table {
|
156
175
|
margin: auto;
|
@@ -160,12 +179,22 @@ body {
|
|
160
179
|
.reveal table th {
|
161
180
|
font-weight: bold; }
|
162
181
|
|
163
|
-
.reveal table th,
|
182
|
+
.reveal table th,
|
183
|
+
.reveal table td {
|
164
184
|
text-align: left;
|
165
185
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
166
186
|
border-bottom: 1px solid; }
|
167
187
|
|
168
|
-
.reveal table
|
188
|
+
.reveal table th[align="center"],
|
189
|
+
.reveal table td[align="center"] {
|
190
|
+
text-align: center; }
|
191
|
+
|
192
|
+
.reveal table th[align="right"],
|
193
|
+
.reveal table td[align="right"] {
|
194
|
+
text-align: right; }
|
195
|
+
|
196
|
+
.reveal table tbody tr:last-child th,
|
197
|
+
.reveal table tbody tr:last-child td {
|
169
198
|
border-bottom: none; }
|
170
199
|
|
171
200
|
.reveal sup {
|
@@ -189,18 +218,18 @@ body {
|
|
189
218
|
.reveal a {
|
190
219
|
color: #13DAEC;
|
191
220
|
text-decoration: none;
|
192
|
-
-webkit-transition: color
|
193
|
-
-moz-transition: color
|
194
|
-
transition: color
|
221
|
+
-webkit-transition: color .15s ease;
|
222
|
+
-moz-transition: color .15s ease;
|
223
|
+
transition: color .15s ease; }
|
195
224
|
|
196
225
|
.reveal a:hover {
|
197
|
-
color: #
|
226
|
+
color: #71e9f4;
|
198
227
|
text-shadow: none;
|
199
228
|
border: none; }
|
200
229
|
|
201
230
|
.reveal .roll span:after {
|
202
231
|
color: #fff;
|
203
|
-
background: #
|
232
|
+
background: #0d99a5; }
|
204
233
|
|
205
234
|
/*********************************************
|
206
235
|
* IMAGES
|
@@ -211,10 +240,14 @@ body {
|
|
211
240
|
border: 4px solid #eee;
|
212
241
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
213
242
|
|
243
|
+
.reveal section img.plain {
|
244
|
+
border: 0;
|
245
|
+
box-shadow: none; }
|
246
|
+
|
214
247
|
.reveal a img {
|
215
|
-
-webkit-transition: all
|
216
|
-
-moz-transition: all
|
217
|
-
transition: all
|
248
|
+
-webkit-transition: all .15s linear;
|
249
|
+
-moz-transition: all .15s linear;
|
250
|
+
transition: all .15s linear; }
|
218
251
|
|
219
252
|
.reveal a:hover img {
|
220
253
|
background: rgba(255, 255, 255, 0.2);
|
@@ -224,29 +257,33 @@ body {
|
|
224
257
|
/*********************************************
|
225
258
|
* NAVIGATION CONTROLS
|
226
259
|
*********************************************/
|
227
|
-
.reveal .controls
|
260
|
+
.reveal .controls .navigate-left,
|
261
|
+
.reveal .controls .navigate-left.enabled {
|
228
262
|
border-right-color: #13DAEC; }
|
229
263
|
|
230
|
-
.reveal .controls
|
264
|
+
.reveal .controls .navigate-right,
|
265
|
+
.reveal .controls .navigate-right.enabled {
|
231
266
|
border-left-color: #13DAEC; }
|
232
267
|
|
233
|
-
.reveal .controls
|
268
|
+
.reveal .controls .navigate-up,
|
269
|
+
.reveal .controls .navigate-up.enabled {
|
234
270
|
border-bottom-color: #13DAEC; }
|
235
271
|
|
236
|
-
.reveal .controls
|
272
|
+
.reveal .controls .navigate-down,
|
273
|
+
.reveal .controls .navigate-down.enabled {
|
237
274
|
border-top-color: #13DAEC; }
|
238
275
|
|
239
|
-
.reveal .controls
|
240
|
-
border-right-color: #
|
276
|
+
.reveal .controls .navigate-left.enabled:hover {
|
277
|
+
border-right-color: #71e9f4; }
|
241
278
|
|
242
|
-
.reveal .controls
|
243
|
-
border-left-color: #
|
279
|
+
.reveal .controls .navigate-right.enabled:hover {
|
280
|
+
border-left-color: #71e9f4; }
|
244
281
|
|
245
|
-
.reveal .controls
|
246
|
-
border-bottom-color: #
|
282
|
+
.reveal .controls .navigate-up.enabled:hover {
|
283
|
+
border-bottom-color: #71e9f4; }
|
247
284
|
|
248
|
-
.reveal .controls
|
249
|
-
border-top-color: #
|
285
|
+
.reveal .controls .navigate-down.enabled:hover {
|
286
|
+
border-top-color: #71e9f4; }
|
250
287
|
|
251
288
|
/*********************************************
|
252
289
|
* PROGRESS BAR
|
@@ -259,9 +296,3 @@ body {
|
|
259
296
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
260
297
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
261
298
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
262
|
-
|
263
|
-
/*********************************************
|
264
|
-
* SLIDE NUMBER
|
265
|
-
*********************************************/
|
266
|
-
.reveal .slide-number {
|
267
|
-
color: #13DAEC; }
|