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,10 +1,10 @@
|
|
1
|
-
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
|
2
|
-
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
|
3
1
|
/**
|
4
2
|
* Sky theme for reveal.js.
|
5
3
|
*
|
6
4
|
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
7
5
|
*/
|
6
|
+
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
|
7
|
+
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
|
8
8
|
.reveal a {
|
9
9
|
line-height: 1.3em; }
|
10
10
|
|
@@ -22,8 +22,8 @@ body {
|
|
22
22
|
background-color: #f7fbfc; }
|
23
23
|
|
24
24
|
.reveal {
|
25
|
-
font-family:
|
26
|
-
font-size:
|
25
|
+
font-family: "Open Sans", sans-serif;
|
26
|
+
font-size: 40px;
|
27
27
|
font-weight: normal;
|
28
28
|
color: #333; }
|
29
29
|
|
@@ -32,17 +32,28 @@ body {
|
|
32
32
|
background: #134674;
|
33
33
|
text-shadow: none; }
|
34
34
|
|
35
|
-
|
35
|
+
::-moz-selection {
|
36
|
+
color: #fff;
|
37
|
+
background: #134674;
|
38
|
+
text-shadow: none; }
|
39
|
+
|
40
|
+
.reveal .slides > section,
|
41
|
+
.reveal .slides > section > section {
|
36
42
|
line-height: 1.3;
|
37
43
|
font-weight: inherit; }
|
38
44
|
|
39
45
|
/*********************************************
|
40
46
|
* HEADERS
|
41
47
|
*********************************************/
|
42
|
-
.reveal h1,
|
48
|
+
.reveal h1,
|
49
|
+
.reveal h2,
|
50
|
+
.reveal h3,
|
51
|
+
.reveal h4,
|
52
|
+
.reveal h5,
|
53
|
+
.reveal h6 {
|
43
54
|
margin: 0 0 20px 0;
|
44
55
|
color: #333;
|
45
|
-
font-family:
|
56
|
+
font-family: "Quicksand", sans-serif;
|
46
57
|
font-weight: normal;
|
47
58
|
line-height: 1.2;
|
48
59
|
letter-spacing: -0.08em;
|
@@ -73,17 +84,22 @@ body {
|
|
73
84
|
line-height: 1.3; }
|
74
85
|
|
75
86
|
/* Ensure certain elements are never larger than the slide itself */
|
76
|
-
.reveal img,
|
87
|
+
.reveal img,
|
88
|
+
.reveal video,
|
89
|
+
.reveal iframe {
|
77
90
|
max-width: 95%;
|
78
91
|
max-height: 95%; }
|
79
92
|
|
80
|
-
.reveal strong,
|
93
|
+
.reveal strong,
|
94
|
+
.reveal b {
|
81
95
|
font-weight: bold; }
|
82
96
|
|
83
97
|
.reveal em {
|
84
98
|
font-style: italic; }
|
85
99
|
|
86
|
-
.reveal ol,
|
100
|
+
.reveal ol,
|
101
|
+
.reveal dl,
|
102
|
+
.reveal ul {
|
87
103
|
display: inline-block;
|
88
104
|
text-align: left;
|
89
105
|
margin: 0 0 0 1em; }
|
@@ -100,7 +116,10 @@ body {
|
|
100
116
|
.reveal ul ul ul {
|
101
117
|
list-style-type: circle; }
|
102
118
|
|
103
|
-
.reveal ul ul,
|
119
|
+
.reveal ul ul,
|
120
|
+
.reveal ul ol,
|
121
|
+
.reveal ol ol,
|
122
|
+
.reveal ol ul {
|
104
123
|
display: block;
|
105
124
|
margin-left: 40px; }
|
106
125
|
|
@@ -110,7 +129,8 @@ body {
|
|
110
129
|
.reveal dd {
|
111
130
|
margin-left: 40px; }
|
112
131
|
|
113
|
-
.reveal q,
|
132
|
+
.reveal q,
|
133
|
+
.reveal blockquote {
|
114
134
|
quotes: none; }
|
115
135
|
|
116
136
|
.reveal blockquote {
|
@@ -123,7 +143,8 @@ body {
|
|
123
143
|
background: rgba(255, 255, 255, 0.05);
|
124
144
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
|
125
145
|
|
126
|
-
.reveal blockquote p:first-child,
|
146
|
+
.reveal blockquote p:first-child,
|
147
|
+
.reveal blockquote p:last-child {
|
127
148
|
display: inline-block; }
|
128
149
|
|
129
150
|
.reveal q {
|
@@ -149,9 +170,7 @@ body {
|
|
149
170
|
padding: 5px;
|
150
171
|
overflow: auto;
|
151
172
|
max-height: 400px;
|
152
|
-
word-wrap: normal;
|
153
|
-
background: #3F3F3F;
|
154
|
-
color: #DCDCDC; }
|
173
|
+
word-wrap: normal; }
|
155
174
|
|
156
175
|
.reveal table {
|
157
176
|
margin: auto;
|
@@ -161,12 +180,22 @@ body {
|
|
161
180
|
.reveal table th {
|
162
181
|
font-weight: bold; }
|
163
182
|
|
164
|
-
.reveal table th,
|
183
|
+
.reveal table th,
|
184
|
+
.reveal table td {
|
165
185
|
text-align: left;
|
166
186
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
167
187
|
border-bottom: 1px solid; }
|
168
188
|
|
169
|
-
.reveal table
|
189
|
+
.reveal table th[align="center"],
|
190
|
+
.reveal table td[align="center"] {
|
191
|
+
text-align: center; }
|
192
|
+
|
193
|
+
.reveal table th[align="right"],
|
194
|
+
.reveal table td[align="right"] {
|
195
|
+
text-align: right; }
|
196
|
+
|
197
|
+
.reveal table tbody tr:last-child th,
|
198
|
+
.reveal table tbody tr:last-child td {
|
170
199
|
border-bottom: none; }
|
171
200
|
|
172
201
|
.reveal sup {
|
@@ -190,18 +219,18 @@ body {
|
|
190
219
|
.reveal a {
|
191
220
|
color: #3b759e;
|
192
221
|
text-decoration: none;
|
193
|
-
-webkit-transition: color
|
194
|
-
-moz-transition: color
|
195
|
-
transition: color
|
222
|
+
-webkit-transition: color .15s ease;
|
223
|
+
-moz-transition: color .15s ease;
|
224
|
+
transition: color .15s ease; }
|
196
225
|
|
197
226
|
.reveal a:hover {
|
198
|
-
color: #
|
227
|
+
color: #74a7cb;
|
199
228
|
text-shadow: none;
|
200
229
|
border: none; }
|
201
230
|
|
202
231
|
.reveal .roll span:after {
|
203
232
|
color: #fff;
|
204
|
-
background: #
|
233
|
+
background: #264c66; }
|
205
234
|
|
206
235
|
/*********************************************
|
207
236
|
* IMAGES
|
@@ -212,10 +241,14 @@ body {
|
|
212
241
|
border: 4px solid #333;
|
213
242
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
214
243
|
|
244
|
+
.reveal section img.plain {
|
245
|
+
border: 0;
|
246
|
+
box-shadow: none; }
|
247
|
+
|
215
248
|
.reveal a img {
|
216
|
-
-webkit-transition: all
|
217
|
-
-moz-transition: all
|
218
|
-
transition: all
|
249
|
+
-webkit-transition: all .15s linear;
|
250
|
+
-moz-transition: all .15s linear;
|
251
|
+
transition: all .15s linear; }
|
219
252
|
|
220
253
|
.reveal a:hover img {
|
221
254
|
background: rgba(255, 255, 255, 0.2);
|
@@ -225,29 +258,33 @@ body {
|
|
225
258
|
/*********************************************
|
226
259
|
* NAVIGATION CONTROLS
|
227
260
|
*********************************************/
|
228
|
-
.reveal .controls
|
261
|
+
.reveal .controls .navigate-left,
|
262
|
+
.reveal .controls .navigate-left.enabled {
|
229
263
|
border-right-color: #3b759e; }
|
230
264
|
|
231
|
-
.reveal .controls
|
265
|
+
.reveal .controls .navigate-right,
|
266
|
+
.reveal .controls .navigate-right.enabled {
|
232
267
|
border-left-color: #3b759e; }
|
233
268
|
|
234
|
-
.reveal .controls
|
269
|
+
.reveal .controls .navigate-up,
|
270
|
+
.reveal .controls .navigate-up.enabled {
|
235
271
|
border-bottom-color: #3b759e; }
|
236
272
|
|
237
|
-
.reveal .controls
|
273
|
+
.reveal .controls .navigate-down,
|
274
|
+
.reveal .controls .navigate-down.enabled {
|
238
275
|
border-top-color: #3b759e; }
|
239
276
|
|
240
|
-
.reveal .controls
|
241
|
-
border-right-color: #
|
277
|
+
.reveal .controls .navigate-left.enabled:hover {
|
278
|
+
border-right-color: #74a7cb; }
|
242
279
|
|
243
|
-
.reveal .controls
|
244
|
-
border-left-color: #
|
280
|
+
.reveal .controls .navigate-right.enabled:hover {
|
281
|
+
border-left-color: #74a7cb; }
|
245
282
|
|
246
|
-
.reveal .controls
|
247
|
-
border-bottom-color: #
|
283
|
+
.reveal .controls .navigate-up.enabled:hover {
|
284
|
+
border-bottom-color: #74a7cb; }
|
248
285
|
|
249
|
-
.reveal .controls
|
250
|
-
border-top-color: #
|
286
|
+
.reveal .controls .navigate-down.enabled:hover {
|
287
|
+
border-top-color: #74a7cb; }
|
251
288
|
|
252
289
|
/*********************************************
|
253
290
|
* PROGRESS BAR
|
@@ -260,9 +297,3 @@ body {
|
|
260
297
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
261
298
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
262
299
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
263
|
-
|
264
|
-
/*********************************************
|
265
|
-
* SLIDE NUMBER
|
266
|
-
*********************************************/
|
267
|
-
.reveal .slide-number {
|
268
|
-
color: #3b759e; }
|
@@ -1,9 +1,9 @@
|
|
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
|
* Solarized Light theme for reveal.js.
|
5
3
|
* Author: Achim Staebler
|
6
4
|
*/
|
5
|
+
@import url(../../lib/font/league-gothic/league-gothic.css);
|
6
|
+
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
7
7
|
/**
|
8
8
|
* Solarized colors by Ethan Schoonover
|
9
9
|
*/
|
@@ -19,8 +19,8 @@ body {
|
|
19
19
|
background-color: #fdf6e3; }
|
20
20
|
|
21
21
|
.reveal {
|
22
|
-
font-family:
|
23
|
-
font-size:
|
22
|
+
font-family: "Lato", sans-serif;
|
23
|
+
font-size: 40px;
|
24
24
|
font-weight: normal;
|
25
25
|
color: #657b83; }
|
26
26
|
|
@@ -29,17 +29,28 @@ body {
|
|
29
29
|
background: #d33682;
|
30
30
|
text-shadow: none; }
|
31
31
|
|
32
|
-
|
32
|
+
::-moz-selection {
|
33
|
+
color: #fff;
|
34
|
+
background: #d33682;
|
35
|
+
text-shadow: none; }
|
36
|
+
|
37
|
+
.reveal .slides > section,
|
38
|
+
.reveal .slides > section > section {
|
33
39
|
line-height: 1.3;
|
34
40
|
font-weight: inherit; }
|
35
41
|
|
36
42
|
/*********************************************
|
37
43
|
* HEADERS
|
38
44
|
*********************************************/
|
39
|
-
.reveal h1,
|
45
|
+
.reveal h1,
|
46
|
+
.reveal h2,
|
47
|
+
.reveal h3,
|
48
|
+
.reveal h4,
|
49
|
+
.reveal h5,
|
50
|
+
.reveal h6 {
|
40
51
|
margin: 0 0 20px 0;
|
41
52
|
color: #586e75;
|
42
|
-
font-family:
|
53
|
+
font-family: "League Gothic", Impact, sans-serif;
|
43
54
|
font-weight: normal;
|
44
55
|
line-height: 1.2;
|
45
56
|
letter-spacing: normal;
|
@@ -70,17 +81,22 @@ body {
|
|
70
81
|
line-height: 1.3; }
|
71
82
|
|
72
83
|
/* Ensure certain elements are never larger than the slide itself */
|
73
|
-
.reveal img,
|
84
|
+
.reveal img,
|
85
|
+
.reveal video,
|
86
|
+
.reveal iframe {
|
74
87
|
max-width: 95%;
|
75
88
|
max-height: 95%; }
|
76
89
|
|
77
|
-
.reveal strong,
|
90
|
+
.reveal strong,
|
91
|
+
.reveal b {
|
78
92
|
font-weight: bold; }
|
79
93
|
|
80
94
|
.reveal em {
|
81
95
|
font-style: italic; }
|
82
96
|
|
83
|
-
.reveal ol,
|
97
|
+
.reveal ol,
|
98
|
+
.reveal dl,
|
99
|
+
.reveal ul {
|
84
100
|
display: inline-block;
|
85
101
|
text-align: left;
|
86
102
|
margin: 0 0 0 1em; }
|
@@ -97,7 +113,10 @@ body {
|
|
97
113
|
.reveal ul ul ul {
|
98
114
|
list-style-type: circle; }
|
99
115
|
|
100
|
-
.reveal ul ul,
|
116
|
+
.reveal ul ul,
|
117
|
+
.reveal ul ol,
|
118
|
+
.reveal ol ol,
|
119
|
+
.reveal ol ul {
|
101
120
|
display: block;
|
102
121
|
margin-left: 40px; }
|
103
122
|
|
@@ -107,7 +126,8 @@ body {
|
|
107
126
|
.reveal dd {
|
108
127
|
margin-left: 40px; }
|
109
128
|
|
110
|
-
.reveal q,
|
129
|
+
.reveal q,
|
130
|
+
.reveal blockquote {
|
111
131
|
quotes: none; }
|
112
132
|
|
113
133
|
.reveal blockquote {
|
@@ -120,7 +140,8 @@ body {
|
|
120
140
|
background: rgba(255, 255, 255, 0.05);
|
121
141
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
|
122
142
|
|
123
|
-
.reveal blockquote p:first-child,
|
143
|
+
.reveal blockquote p:first-child,
|
144
|
+
.reveal blockquote p:last-child {
|
124
145
|
display: inline-block; }
|
125
146
|
|
126
147
|
.reveal q {
|
@@ -146,9 +167,7 @@ body {
|
|
146
167
|
padding: 5px;
|
147
168
|
overflow: auto;
|
148
169
|
max-height: 400px;
|
149
|
-
word-wrap: normal;
|
150
|
-
background: #3F3F3F;
|
151
|
-
color: #DCDCDC; }
|
170
|
+
word-wrap: normal; }
|
152
171
|
|
153
172
|
.reveal table {
|
154
173
|
margin: auto;
|
@@ -158,12 +177,22 @@ body {
|
|
158
177
|
.reveal table th {
|
159
178
|
font-weight: bold; }
|
160
179
|
|
161
|
-
.reveal table th,
|
180
|
+
.reveal table th,
|
181
|
+
.reveal table td {
|
162
182
|
text-align: left;
|
163
183
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
164
184
|
border-bottom: 1px solid; }
|
165
185
|
|
166
|
-
.reveal table
|
186
|
+
.reveal table th[align="center"],
|
187
|
+
.reveal table td[align="center"] {
|
188
|
+
text-align: center; }
|
189
|
+
|
190
|
+
.reveal table th[align="right"],
|
191
|
+
.reveal table td[align="right"] {
|
192
|
+
text-align: right; }
|
193
|
+
|
194
|
+
.reveal table tbody tr:last-child th,
|
195
|
+
.reveal table tbody tr:last-child td {
|
167
196
|
border-bottom: none; }
|
168
197
|
|
169
198
|
.reveal sup {
|
@@ -187,18 +216,18 @@ body {
|
|
187
216
|
.reveal a {
|
188
217
|
color: #268bd2;
|
189
218
|
text-decoration: none;
|
190
|
-
-webkit-transition: color
|
191
|
-
-moz-transition: color
|
192
|
-
transition: color
|
219
|
+
-webkit-transition: color .15s ease;
|
220
|
+
-moz-transition: color .15s ease;
|
221
|
+
transition: color .15s ease; }
|
193
222
|
|
194
223
|
.reveal a:hover {
|
195
|
-
color: #
|
224
|
+
color: #78b9e6;
|
196
225
|
text-shadow: none;
|
197
226
|
border: none; }
|
198
227
|
|
199
228
|
.reveal .roll span:after {
|
200
229
|
color: #fff;
|
201
|
-
background: #
|
230
|
+
background: #1a6091; }
|
202
231
|
|
203
232
|
/*********************************************
|
204
233
|
* IMAGES
|
@@ -209,10 +238,14 @@ body {
|
|
209
238
|
border: 4px solid #657b83;
|
210
239
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
211
240
|
|
241
|
+
.reveal section img.plain {
|
242
|
+
border: 0;
|
243
|
+
box-shadow: none; }
|
244
|
+
|
212
245
|
.reveal a img {
|
213
|
-
-webkit-transition: all
|
214
|
-
-moz-transition: all
|
215
|
-
transition: all
|
246
|
+
-webkit-transition: all .15s linear;
|
247
|
+
-moz-transition: all .15s linear;
|
248
|
+
transition: all .15s linear; }
|
216
249
|
|
217
250
|
.reveal a:hover img {
|
218
251
|
background: rgba(255, 255, 255, 0.2);
|
@@ -222,29 +255,33 @@ body {
|
|
222
255
|
/*********************************************
|
223
256
|
* NAVIGATION CONTROLS
|
224
257
|
*********************************************/
|
225
|
-
.reveal .controls
|
258
|
+
.reveal .controls .navigate-left,
|
259
|
+
.reveal .controls .navigate-left.enabled {
|
226
260
|
border-right-color: #268bd2; }
|
227
261
|
|
228
|
-
.reveal .controls
|
262
|
+
.reveal .controls .navigate-right,
|
263
|
+
.reveal .controls .navigate-right.enabled {
|
229
264
|
border-left-color: #268bd2; }
|
230
265
|
|
231
|
-
.reveal .controls
|
266
|
+
.reveal .controls .navigate-up,
|
267
|
+
.reveal .controls .navigate-up.enabled {
|
232
268
|
border-bottom-color: #268bd2; }
|
233
269
|
|
234
|
-
.reveal .controls
|
270
|
+
.reveal .controls .navigate-down,
|
271
|
+
.reveal .controls .navigate-down.enabled {
|
235
272
|
border-top-color: #268bd2; }
|
236
273
|
|
237
|
-
.reveal .controls
|
238
|
-
border-right-color: #
|
274
|
+
.reveal .controls .navigate-left.enabled:hover {
|
275
|
+
border-right-color: #78b9e6; }
|
239
276
|
|
240
|
-
.reveal .controls
|
241
|
-
border-left-color: #
|
277
|
+
.reveal .controls .navigate-right.enabled:hover {
|
278
|
+
border-left-color: #78b9e6; }
|
242
279
|
|
243
|
-
.reveal .controls
|
244
|
-
border-bottom-color: #
|
280
|
+
.reveal .controls .navigate-up.enabled:hover {
|
281
|
+
border-bottom-color: #78b9e6; }
|
245
282
|
|
246
|
-
.reveal .controls
|
247
|
-
border-top-color: #
|
283
|
+
.reveal .controls .navigate-down.enabled:hover {
|
284
|
+
border-top-color: #78b9e6; }
|
248
285
|
|
249
286
|
/*********************************************
|
250
287
|
* PROGRESS BAR
|
@@ -257,9 +294,3 @@ body {
|
|
257
294
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
258
295
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
259
296
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
260
|
-
|
261
|
-
/*********************************************
|
262
|
-
* SLIDE NUMBER
|
263
|
-
*********************************************/
|
264
|
-
.reveal .slide-number {
|
265
|
-
color: #268bd2; }
|