reveal-ck 3.6.0 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/files/reveal.js/CONTRIBUTING.md +4 -0
  3. data/files/reveal.js/Gruntfile.js +44 -26
  4. data/files/reveal.js/LICENSE +1 -1
  5. data/files/reveal.js/README.md +375 -161
  6. data/files/reveal.js/bower.json +27 -0
  7. data/files/reveal.js/css/print/paper.css +4 -3
  8. data/files/reveal.js/css/print/pdf.css +53 -38
  9. data/files/reveal.js/css/reveal.css +452 -206
  10. data/files/reveal.js/css/reveal.scss +328 -175
  11. data/files/reveal.js/css/theme/README.md +2 -6
  12. data/files/reveal.js/css/theme/beige.css +81 -50
  13. data/files/reveal.js/css/theme/black.css +70 -39
  14. data/files/reveal.js/css/theme/blood.css +81 -57
  15. data/files/reveal.js/css/theme/league.css +75 -44
  16. data/files/reveal.js/css/theme/moon.css +75 -44
  17. data/files/reveal.js/css/theme/night.css +70 -39
  18. data/files/reveal.js/css/theme/serif.css +72 -41
  19. data/files/reveal.js/css/theme/simple.css +72 -38
  20. data/files/reveal.js/css/theme/sky.css +75 -44
  21. data/files/reveal.js/css/theme/solarized.css +75 -44
  22. data/files/reveal.js/css/theme/source/black.scss +2 -2
  23. data/files/reveal.js/css/theme/source/blood.scss +3 -16
  24. data/files/reveal.js/css/theme/source/night.scss +0 -1
  25. data/files/reveal.js/css/theme/source/simple.scss +5 -0
  26. data/files/reveal.js/css/theme/source/white.scss +2 -2
  27. data/files/reveal.js/css/theme/template/settings.scss +1 -1
  28. data/files/reveal.js/css/theme/template/theme.scss +36 -23
  29. data/files/reveal.js/css/theme/white.css +75 -44
  30. data/files/reveal.js/demo.html +410 -0
  31. data/files/reveal.js/index.html +14 -373
  32. data/files/reveal.js/js/reveal.js +1186 -350
  33. data/files/reveal.js/lib/css/zenburn.css +41 -78
  34. data/files/reveal.js/lib/js/head.min.js +9 -8
  35. data/files/reveal.js/package.json +22 -26
  36. data/files/reveal.js/plugin/highlight/highlight.js +52 -4
  37. data/files/reveal.js/plugin/markdown/example.html +1 -1
  38. data/files/reveal.js/plugin/markdown/markdown.js +40 -21
  39. data/files/reveal.js/plugin/markdown/marked.js +2 -33
  40. data/files/reveal.js/plugin/math/math.js +5 -2
  41. data/files/reveal.js/plugin/multiplex/client.js +1 -1
  42. data/files/reveal.js/plugin/multiplex/index.js +24 -16
  43. data/files/reveal.js/plugin/multiplex/master.js +22 -42
  44. data/files/reveal.js/plugin/multiplex/package.json +19 -0
  45. data/files/reveal.js/plugin/notes-server/client.js +6 -1
  46. data/files/reveal.js/plugin/notes-server/index.js +17 -14
  47. data/files/reveal.js/plugin/notes-server/notes.html +215 -26
  48. data/files/reveal.js/plugin/notes/notes.html +372 -32
  49. data/files/reveal.js/plugin/notes/notes.js +40 -7
  50. data/files/reveal.js/plugin/print-pdf/print-pdf.js +47 -26
  51. data/files/reveal.js/plugin/zoom-js/zoom.js +12 -2
  52. data/files/reveal.js/test/examples/math.html +1 -1
  53. data/files/reveal.js/test/examples/slide-backgrounds.html +1 -1
  54. data/files/reveal.js/test/examples/slide-transitions.html +101 -0
  55. data/files/reveal.js/test/simple.md +12 -0
  56. data/files/reveal.js/test/test-markdown-element-attributes.html +3 -3
  57. data/files/reveal.js/test/test-markdown-element-attributes.js +1 -1
  58. data/files/reveal.js/test/test-markdown-external.html +36 -0
  59. data/files/reveal.js/test/test-markdown-external.js +24 -0
  60. data/files/reveal.js/test/test-markdown-options.html +41 -0
  61. data/files/reveal.js/test/test-markdown-options.js +26 -0
  62. data/files/reveal.js/test/test-markdown.html +1 -1
  63. data/files/reveal.js/test/test.html +5 -1
  64. data/files/reveal.js/test/test.js +26 -1
  65. data/lib/reveal-ck/version.rb +1 -1
  66. metadata +11 -4
  67. data/files/reveal.js/plugin/leap/leap.js +0 -159
  68. data/files/reveal.js/plugin/remotes/remotes.js +0 -39
@@ -2,11 +2,9 @@
2
2
 
3
3
  Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup
4
4
 
5
- You also need to install Ruby and then Sass (with `gem install sass`).
6
-
7
5
  ## Creating a Theme
8
6
 
9
- To create your own theme, start by duplicating any ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source) and adding it to the compilation list in the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js).
7
+ To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.
10
8
 
11
9
  Each theme file does four things in the following order:
12
10
 
@@ -17,9 +15,7 @@ Shared utility functions.
17
15
  Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
18
16
 
19
17
  3. **Override**
20
- This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding full selectors with hardcoded styles.
18
+ This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.
21
19
 
22
20
  4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
23
21
  The template theme file which will generate final CSS output based on the currently defined variables.
24
-
25
- When you are done, run `grunt themes` to compile the Sass file to CSS and you are ready to use your new theme.
@@ -1,26 +1,26 @@
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
  * Beige theme for reveal.js.
5
3
  *
6
4
  * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
5
  */
6
+ @import url(../../lib/font/league-gothic/league-gothic.css);
7
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
8
8
  /*********************************************
9
9
  * GLOBAL STYLES
10
10
  *********************************************/
11
11
  body {
12
12
  background: #f7f2d3;
13
- background: -moz-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
14
- background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #ffffff), color-stop(100%, #f7f2d3));
15
- background: -webkit-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
16
- background: -o-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
17
- background: -ms-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
18
- background: radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
13
+ background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
14
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
15
+ background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
16
+ background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
17
+ background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
18
+ background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
19
19
  background-color: #f7f3de; }
20
20
 
21
21
  .reveal {
22
- font-family: 'Lato', sans-serif;
23
- font-size: 36px;
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
24
  font-weight: normal;
25
25
  color: #333; }
26
26
 
@@ -29,17 +29,28 @@ body {
29
29
  background: rgba(79, 64, 28, 0.99);
30
30
  text-shadow: none; }
31
31
 
32
- .reveal .slides > section, .reveal .slides > section > section {
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: rgba(79, 64, 28, 0.99);
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, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
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: #333;
42
- font-family: 'League Gothic', Impact, sans-serif;
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, .reveal video, .reveal iframe {
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
74
87
  max-width: 95%;
75
88
  max-height: 95%; }
76
89
 
77
- .reveal strong, .reveal b {
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, .reveal dl, .reveal ul {
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, .reveal ul ol, .reveal ol ol, .reveal ol 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, .reveal blockquote {
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, .reveal blockquote p:last-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, .reveal table td {
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 tr:last-child td {
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: #8b743d;
189
218
  text-decoration: none;
190
- -webkit-transition: color 0.15s ease;
191
- -moz-transition: color 0.15s ease;
192
- transition: color 0.15s ease; }
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: #c0a76e;
224
+ color: #c0a86e;
196
225
  text-shadow: none;
197
226
  border: none; }
198
227
 
199
228
  .reveal .roll span:after {
200
229
  color: #fff;
201
- background: #564726; }
230
+ background: #564826; }
202
231
 
203
232
  /*********************************************
204
233
  * IMAGES
@@ -209,10 +238,14 @@ body {
209
238
  border: 4px solid #333;
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 0.15s linear;
214
- -moz-transition: all 0.15s linear;
215
- transition: all 0.15s linear; }
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 div.navigate-left, .reveal .controls div.navigate-left.enabled {
258
+ .reveal .controls .navigate-left,
259
+ .reveal .controls .navigate-left.enabled {
226
260
  border-right-color: #8b743d; }
227
261
 
228
- .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
262
+ .reveal .controls .navigate-right,
263
+ .reveal .controls .navigate-right.enabled {
229
264
  border-left-color: #8b743d; }
230
265
 
231
- .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
266
+ .reveal .controls .navigate-up,
267
+ .reveal .controls .navigate-up.enabled {
232
268
  border-bottom-color: #8b743d; }
233
269
 
234
- .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
270
+ .reveal .controls .navigate-down,
271
+ .reveal .controls .navigate-down.enabled {
235
272
  border-top-color: #8b743d; }
236
273
 
237
- .reveal .controls div.navigate-left.enabled:hover {
238
- border-right-color: #c0a76e; }
274
+ .reveal .controls .navigate-left.enabled:hover {
275
+ border-right-color: #c0a86e; }
239
276
 
240
- .reveal .controls div.navigate-right.enabled:hover {
241
- border-left-color: #c0a76e; }
277
+ .reveal .controls .navigate-right.enabled:hover {
278
+ border-left-color: #c0a86e; }
242
279
 
243
- .reveal .controls div.navigate-up.enabled:hover {
244
- border-bottom-color: #c0a76e; }
280
+ .reveal .controls .navigate-up.enabled:hover {
281
+ border-bottom-color: #c0a86e; }
245
282
 
246
- .reveal .controls div.navigate-down.enabled:hover {
247
- border-top-color: #c0a76e; }
283
+ .reveal .controls .navigate-down.enabled:hover {
284
+ border-top-color: #c0a86e; }
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: #8b743d; }
@@ -1,9 +1,9 @@
1
- @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
2
1
  /**
3
2
  * Black theme for reveal.js. This is the opposite of the 'white' theme.
4
3
  *
5
- * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
4
+ * By Hakim El Hattab, http://hakim.se
6
5
  */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7
7
  section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
8
8
  color: #222; }
9
9
 
@@ -15,8 +15,8 @@ body {
15
15
  background-color: #222; }
16
16
 
17
17
  .reveal {
18
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
19
- font-size: 38px;
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
20
  font-weight: normal;
21
21
  color: #fff; }
22
22
 
@@ -25,17 +25,28 @@ body {
25
25
  background: #bee4fd;
26
26
  text-shadow: none; }
27
27
 
28
- .reveal .slides > section, .reveal .slides > section > section {
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #bee4fd;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
29
35
  line-height: 1.3;
30
36
  font-weight: inherit; }
31
37
 
32
38
  /*********************************************
33
39
  * HEADERS
34
40
  *********************************************/
35
- .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
36
47
  margin: 0 0 20px 0;
37
48
  color: #fff;
38
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
39
50
  font-weight: 600;
40
51
  line-height: 1.2;
41
52
  letter-spacing: normal;
@@ -66,17 +77,22 @@ body {
66
77
  line-height: 1.3; }
67
78
 
68
79
  /* Ensure certain elements are never larger than the slide itself */
69
- .reveal img, .reveal video, .reveal iframe {
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
70
83
  max-width: 95%;
71
84
  max-height: 95%; }
72
85
 
73
- .reveal strong, .reveal b {
86
+ .reveal strong,
87
+ .reveal b {
74
88
  font-weight: bold; }
75
89
 
76
90
  .reveal em {
77
91
  font-style: italic; }
78
92
 
79
- .reveal ol, .reveal dl, .reveal ul {
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
80
96
  display: inline-block;
81
97
  text-align: left;
82
98
  margin: 0 0 0 1em; }
@@ -93,7 +109,10 @@ body {
93
109
  .reveal ul ul ul {
94
110
  list-style-type: circle; }
95
111
 
96
- .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
97
116
  display: block;
98
117
  margin-left: 40px; }
99
118
 
@@ -103,7 +122,8 @@ body {
103
122
  .reveal dd {
104
123
  margin-left: 40px; }
105
124
 
106
- .reveal q, .reveal blockquote {
125
+ .reveal q,
126
+ .reveal blockquote {
107
127
  quotes: none; }
108
128
 
109
129
  .reveal blockquote {
@@ -116,7 +136,8 @@ body {
116
136
  background: rgba(255, 255, 255, 0.05);
117
137
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
118
138
 
119
- .reveal blockquote p:first-child, .reveal blockquote p:last-child {
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
120
141
  display: inline-block; }
121
142
 
122
143
  .reveal q {
@@ -142,9 +163,7 @@ body {
142
163
  padding: 5px;
143
164
  overflow: auto;
144
165
  max-height: 400px;
145
- word-wrap: normal;
146
- background: #3F3F3F;
147
- color: #DCDCDC; }
166
+ word-wrap: normal; }
148
167
 
149
168
  .reveal table {
150
169
  margin: auto;
@@ -154,12 +173,22 @@ body {
154
173
  .reveal table th {
155
174
  font-weight: bold; }
156
175
 
157
- .reveal table th, .reveal table td {
176
+ .reveal table th,
177
+ .reveal table td {
158
178
  text-align: left;
159
179
  padding: 0.2em 0.5em 0.2em 0.5em;
160
180
  border-bottom: 1px solid; }
161
181
 
162
- .reveal table tr:last-child td {
182
+ .reveal table th[align="center"],
183
+ .reveal table td[align="center"] {
184
+ text-align: center; }
185
+
186
+ .reveal table th[align="right"],
187
+ .reveal table td[align="right"] {
188
+ text-align: right; }
189
+
190
+ .reveal table tbody tr:last-child th,
191
+ .reveal table tbody tr:last-child td {
163
192
  border-bottom: none; }
164
193
 
165
194
  .reveal sup {
@@ -183,9 +212,9 @@ body {
183
212
  .reveal a {
184
213
  color: #42affa;
185
214
  text-decoration: none;
186
- -webkit-transition: color 0.15s ease;
187
- -moz-transition: color 0.15s ease;
188
- transition: color 0.15s ease; }
215
+ -webkit-transition: color .15s ease;
216
+ -moz-transition: color .15s ease;
217
+ transition: color .15s ease; }
189
218
 
190
219
  .reveal a:hover {
191
220
  color: #8dcffc;
@@ -194,7 +223,7 @@ body {
194
223
 
195
224
  .reveal .roll span:after {
196
225
  color: #fff;
197
- background: #068ee9; }
226
+ background: #068de9; }
198
227
 
199
228
  /*********************************************
200
229
  * IMAGES
@@ -205,10 +234,14 @@ body {
205
234
  border: 4px solid #fff;
206
235
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
207
236
 
237
+ .reveal section img.plain {
238
+ border: 0;
239
+ box-shadow: none; }
240
+
208
241
  .reveal a img {
209
- -webkit-transition: all 0.15s linear;
210
- -moz-transition: all 0.15s linear;
211
- transition: all 0.15s linear; }
242
+ -webkit-transition: all .15s linear;
243
+ -moz-transition: all .15s linear;
244
+ transition: all .15s linear; }
212
245
 
213
246
  .reveal a:hover img {
214
247
  background: rgba(255, 255, 255, 0.2);
@@ -218,28 +251,32 @@ body {
218
251
  /*********************************************
219
252
  * NAVIGATION CONTROLS
220
253
  *********************************************/
221
- .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
254
+ .reveal .controls .navigate-left,
255
+ .reveal .controls .navigate-left.enabled {
222
256
  border-right-color: #42affa; }
223
257
 
224
- .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
258
+ .reveal .controls .navigate-right,
259
+ .reveal .controls .navigate-right.enabled {
225
260
  border-left-color: #42affa; }
226
261
 
227
- .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
262
+ .reveal .controls .navigate-up,
263
+ .reveal .controls .navigate-up.enabled {
228
264
  border-bottom-color: #42affa; }
229
265
 
230
- .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
266
+ .reveal .controls .navigate-down,
267
+ .reveal .controls .navigate-down.enabled {
231
268
  border-top-color: #42affa; }
232
269
 
233
- .reveal .controls div.navigate-left.enabled:hover {
270
+ .reveal .controls .navigate-left.enabled:hover {
234
271
  border-right-color: #8dcffc; }
235
272
 
236
- .reveal .controls div.navigate-right.enabled:hover {
273
+ .reveal .controls .navigate-right.enabled:hover {
237
274
  border-left-color: #8dcffc; }
238
275
 
239
- .reveal .controls div.navigate-up.enabled:hover {
276
+ .reveal .controls .navigate-up.enabled:hover {
240
277
  border-bottom-color: #8dcffc; }
241
278
 
242
- .reveal .controls div.navigate-down.enabled:hover {
279
+ .reveal .controls .navigate-down.enabled:hover {
243
280
  border-top-color: #8dcffc; }
244
281
 
245
282
  /*********************************************
@@ -253,9 +290,3 @@ body {
253
290
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
254
291
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
255
292
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
256
-
257
- /*********************************************
258
- * SLIDE NUMBER
259
- *********************************************/
260
- .reveal .slide-number {
261
- color: #42affa; }