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