reveal-ck 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/files/reveal-ck/templates/index.html/body.html.erb +1 -1
  3. data/files/reveal-ck/templates/index.html/head.html.erb +1 -1
  4. data/files/reveal.js/CONTRIBUTING.md +20 -0
  5. data/files/reveal.js/Gruntfile.js +55 -19
  6. data/files/reveal.js/README.md +54 -39
  7. data/files/reveal.js/css/print/paper.css +193 -167
  8. data/files/reveal.js/css/print/pdf.css +18 -42
  9. data/files/reveal.js/css/reveal.css +937 -1636
  10. data/files/reveal.js/css/reveal.scss +1357 -0
  11. data/files/reveal.js/css/theme/beige.css +177 -55
  12. data/files/reveal.js/css/theme/black.css +258 -0
  13. data/files/reveal.js/css/theme/blood.css +190 -75
  14. data/files/reveal.js/css/theme/default.css +180 -58
  15. data/files/reveal.js/css/theme/moon.css +168 -46
  16. data/files/reveal.js/css/theme/night.css +164 -42
  17. data/files/reveal.js/css/theme/serif.css +180 -58
  18. data/files/reveal.js/css/theme/simple.css +172 -50
  19. data/files/reveal.js/css/theme/sky.css +169 -47
  20. data/files/reveal.js/css/theme/solarized.css +168 -46
  21. data/files/reveal.js/css/theme/source/black.scss +44 -0
  22. data/files/reveal.js/css/theme/source/blood.scss +4 -4
  23. data/files/reveal.js/css/theme/source/default.scss +1 -0
  24. data/files/reveal.js/css/theme/source/serif.scss +1 -1
  25. data/files/reveal.js/css/theme/source/sky.scss +1 -1
  26. data/files/reveal.js/css/theme/template/settings.scss +8 -3
  27. data/files/reveal.js/css/theme/template/theme.scss +181 -13
  28. data/files/reveal.js/index.html +70 -53
  29. data/files/reveal.js/js/reveal.js +1269 -371
  30. data/files/reveal.js/lib/css/zenburn.css +74 -71
  31. data/files/reveal.js/package.json +9 -7
  32. data/files/reveal.js/plugin/highlight/highlight.js +2 -4
  33. data/files/reveal.js/plugin/leap/leap.js +4 -2
  34. data/files/reveal.js/plugin/markdown/example.html +2 -2
  35. data/files/reveal.js/plugin/markdown/markdown.js +8 -7
  36. data/files/reveal.js/plugin/notes-server/client.js +49 -46
  37. data/files/reveal.js/plugin/notes-server/index.js +28 -21
  38. data/files/reveal.js/plugin/notes-server/notes.html +351 -97
  39. data/files/reveal.js/plugin/notes/notes.html +321 -182
  40. data/files/reveal.js/plugin/notes/notes.js +89 -45
  41. data/files/reveal.js/plugin/print-pdf/print-pdf.js +24 -20
  42. data/files/reveal.js/plugin/zoom-js/zoom.js +64 -56
  43. data/files/reveal.js/test/examples/barebones.html +2 -2
  44. data/files/reveal.js/test/examples/embedded-media.html +2 -2
  45. data/files/reveal.js/test/examples/math.html +2 -2
  46. data/files/reveal.js/test/examples/slide-backgrounds.html +29 -7
  47. data/files/reveal.js/test/test-markdown-element-attributes.html +6 -6
  48. data/files/reveal.js/test/test-markdown-slide-attributes.html +7 -7
  49. data/files/reveal.js/test/test-markdown.html +4 -4
  50. data/files/reveal.js/test/test-pdf.html +83 -0
  51. data/files/reveal.js/test/test-pdf.js +15 -0
  52. data/files/reveal.js/test/test.html +5 -4
  53. data/files/reveal.js/test/test.js +143 -9
  54. data/lib/reveal-ck/builders/reveal_js_files.rb +2 -2
  55. data/lib/reveal-ck/markdown.rb +12 -0
  56. data/lib/reveal-ck/markdown/post_processor.rb +110 -0
  57. data/lib/reveal-ck/markdown/pre_processor.rb +104 -0
  58. data/lib/reveal-ck/markdown/slide_markdown.rb +2 -20
  59. data/lib/reveal-ck/markdown/slide_markdown_template.rb +4 -1
  60. data/lib/reveal-ck/tilt/config.rb +3 -3
  61. data/lib/reveal-ck/version.rb +1 -1
  62. data/spec/lib/reveal-ck/builders/reveal_js_files_spec.rb +1 -1
  63. data/spec/lib/reveal-ck/builders/slides_builder_spec.rb +1 -1
  64. data/spec/lib/reveal-ck/builders/user_files_spec.rb +1 -1
  65. data/spec/lib/reveal-ck/markdown/post_processor_spec.rb +311 -0
  66. data/spec/lib/reveal-ck/markdown/pre_processor_spec.rb +301 -0
  67. data/spec/lib/reveal-ck/markdown/slide_markdown_spec.rb +1 -69
  68. metadata +15 -7
  69. data/files/reveal.js/css/reveal.min.css +0 -7
  70. data/files/reveal.js/js/reveal.min.js +0 -9
  71. data/files/reveal.js/plugin/postmessage/example.html +0 -39
  72. data/files/reveal.js/plugin/postmessage/postmessage.js +0 -42
@@ -5,8 +5,8 @@
5
5
  */
6
6
  @font-face {
7
7
  font-family: 'League Gothic';
8
- src: url("../../lib/font/league_gothic-webfont.eot");
9
- src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
8
+ src: url('../../lib/font/league_gothic-webfont.eot');
9
+ src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), url('../../lib/font/league_gothic-webfont.woff') format('woff'), url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg');
10
10
  font-weight: normal;
11
11
  font-style: normal; }
12
12
 
@@ -25,57 +25,185 @@ body {
25
25
  background-color: #002b36; }
26
26
 
27
27
  .reveal {
28
- font-family: "Lato", sans-serif;
28
+ font-family: 'Lato', sans-serif;
29
29
  font-size: 36px;
30
30
  font-weight: normal;
31
- letter-spacing: -0.02em;
32
31
  color: #93a1a1; }
33
32
 
34
33
  ::selection {
35
- color: white;
34
+ color: #fff;
36
35
  background: #d33682;
37
36
  text-shadow: none; }
38
37
 
38
+ .reveal .slides > section, .reveal .slides > section > section {
39
+ line-height: 1.3;
40
+ font-weight: inherit; }
41
+
39
42
  /*********************************************
40
43
  * HEADERS
41
44
  *********************************************/
42
- .reveal h1,
43
- .reveal h2,
44
- .reveal h3,
45
- .reveal h4,
46
- .reveal h5,
47
- .reveal h6 {
45
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
48
46
  margin: 0 0 20px 0;
49
47
  color: #eee8d5;
50
- font-family: "League Gothic", Impact, sans-serif;
51
- line-height: 0.9em;
52
- letter-spacing: 0.02em;
48
+ font-family: 'League Gothic', Impact, sans-serif;
49
+ line-height: 1.2;
50
+ letter-spacing: normal;
53
51
  text-transform: uppercase;
54
- text-shadow: none; }
52
+ text-shadow: none;
53
+ word-wrap: break-word; }
55
54
 
56
55
  .reveal h1 {
57
- text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
56
+ font-size: 3.77em; }
57
+
58
+ .reveal h2 {
59
+ font-size: 2.11em; }
60
+
61
+ .reveal h3 {
62
+ font-size: 1.55em; }
63
+
64
+ .reveal h4 {
65
+ font-size: 1em; }
66
+
67
+ .reveal h1 {
68
+ text-shadow: none; }
69
+
70
+ /*********************************************
71
+ * OTHER
72
+ *********************************************/
73
+ .reveal p {
74
+ margin-bottom: 10px;
75
+ line-height: 1.3; }
76
+
77
+ /* Ensure certain elements are never larger than the slide itself */
78
+ .reveal img, .reveal video, .reveal iframe {
79
+ max-width: 95%;
80
+ max-height: 95%; }
81
+
82
+ .reveal strong, .reveal b {
83
+ font-weight: bold; }
84
+
85
+ .reveal em {
86
+ font-style: italic; }
87
+
88
+ .reveal ol, .reveal dl, .reveal ul {
89
+ display: inline-block;
90
+ text-align: left;
91
+ margin: 0 0 0 1em; }
92
+
93
+ .reveal ol {
94
+ list-style-type: decimal; }
95
+
96
+ .reveal ul {
97
+ list-style-type: disc; }
98
+
99
+ .reveal ul ul {
100
+ list-style-type: square; }
101
+
102
+ .reveal ul ul ul {
103
+ list-style-type: circle; }
104
+
105
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
106
+ display: block;
107
+ margin-left: 40px; }
108
+
109
+ .reveal dt {
110
+ font-weight: bold; }
111
+
112
+ .reveal dd {
113
+ margin-left: 40px; }
114
+
115
+ .reveal q, .reveal blockquote {
116
+ quotes: none; }
117
+
118
+ .reveal blockquote {
119
+ display: block;
120
+ position: relative;
121
+ width: 70%;
122
+ margin: 5px auto;
123
+ padding: 5px;
124
+ font-style: italic;
125
+ background: rgba(255, 255, 255, 0.05);
126
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
127
+
128
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
129
+ display: inline-block; }
130
+
131
+ .reveal q {
132
+ font-style: italic; }
133
+
134
+ .reveal pre {
135
+ display: block;
136
+ position: relative;
137
+ width: 90%;
138
+ margin: 15px auto;
139
+ text-align: left;
140
+ font-size: 0.55em;
141
+ font-family: monospace;
142
+ line-height: 1.2em;
143
+ word-wrap: break-word;
144
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
145
+
146
+ .reveal code {
147
+ font-family: monospace; }
148
+
149
+ .reveal pre code {
150
+ display: block;
151
+ padding: 5px;
152
+ overflow: auto;
153
+ max-height: 400px;
154
+ word-wrap: normal;
155
+ background: #3F3F3F;
156
+ color: #DCDCDC; }
157
+
158
+ .reveal table {
159
+ margin: auto;
160
+ border-collapse: collapse;
161
+ border-spacing: 0; }
162
+
163
+ .reveal table th {
164
+ font-weight: bold; }
165
+
166
+ .reveal table th, .reveal table td {
167
+ text-align: left;
168
+ padding: 0.2em 0.5em 0.2em 0.5em;
169
+ border-bottom: 1px solid; }
170
+
171
+ .reveal table tr:last-child td {
172
+ border-bottom: none; }
173
+
174
+ .reveal sup {
175
+ vertical-align: super; }
176
+
177
+ .reveal sub {
178
+ vertical-align: sub; }
179
+
180
+ .reveal small {
181
+ display: inline-block;
182
+ font-size: 0.6em;
183
+ line-height: 1.2em;
184
+ vertical-align: top; }
185
+
186
+ .reveal small * {
187
+ vertical-align: top; }
58
188
 
59
189
  /*********************************************
60
190
  * LINKS
61
191
  *********************************************/
62
- .reveal a:not(.image) {
192
+ .reveal a {
63
193
  color: #268bd2;
64
194
  text-decoration: none;
65
- -webkit-transition: color .15s ease;
66
- -moz-transition: color .15s ease;
67
- -ms-transition: color .15s ease;
68
- -o-transition: color .15s ease;
69
- transition: color .15s ease; }
70
-
71
- .reveal a:not(.image):hover {
72
- color: #78b9e6;
195
+ -webkit-transition: color 0.15s ease;
196
+ -moz-transition: color 0.15s ease;
197
+ transition: color 0.15s ease; }
198
+
199
+ .reveal a:hover {
200
+ color: #78bae6;
73
201
  text-shadow: none;
74
202
  border: none; }
75
203
 
76
204
  .reveal .roll span:after {
77
205
  color: #fff;
78
- background: #1a6091; }
206
+ background: #1a6291; }
79
207
 
80
208
  /*********************************************
81
209
  * IMAGES
@@ -84,12 +212,12 @@ body {
84
212
  margin: 15px 0px;
85
213
  background: rgba(255, 255, 255, 0.12);
86
214
  border: 4px solid #93a1a1;
87
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
88
- -webkit-transition: all .2s linear;
89
- -moz-transition: all .2s linear;
90
- -ms-transition: all .2s linear;
91
- -o-transition: all .2s linear;
92
- transition: all .2s linear; }
215
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
216
+
217
+ .reveal a img {
218
+ -webkit-transition: all 0.15s linear;
219
+ -moz-transition: all 0.15s linear;
220
+ transition: all 0.15s linear; }
93
221
 
94
222
  .reveal a:hover img {
95
223
  background: rgba(255, 255, 255, 0.2);
@@ -99,33 +227,29 @@ body {
99
227
  /*********************************************
100
228
  * NAVIGATION CONTROLS
101
229
  *********************************************/
102
- .reveal .controls div.navigate-left,
103
- .reveal .controls div.navigate-left.enabled {
230
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
104
231
  border-right-color: #268bd2; }
105
232
 
106
- .reveal .controls div.navigate-right,
107
- .reveal .controls div.navigate-right.enabled {
233
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
108
234
  border-left-color: #268bd2; }
109
235
 
110
- .reveal .controls div.navigate-up,
111
- .reveal .controls div.navigate-up.enabled {
236
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
112
237
  border-bottom-color: #268bd2; }
113
238
 
114
- .reveal .controls div.navigate-down,
115
- .reveal .controls div.navigate-down.enabled {
239
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
116
240
  border-top-color: #268bd2; }
117
241
 
118
242
  .reveal .controls div.navigate-left.enabled:hover {
119
- border-right-color: #78b9e6; }
243
+ border-right-color: #78bae6; }
120
244
 
121
245
  .reveal .controls div.navigate-right.enabled:hover {
122
- border-left-color: #78b9e6; }
246
+ border-left-color: #78bae6; }
123
247
 
124
248
  .reveal .controls div.navigate-up.enabled:hover {
125
- border-bottom-color: #78b9e6; }
249
+ border-bottom-color: #78bae6; }
126
250
 
127
251
  .reveal .controls div.navigate-down.enabled:hover {
128
- border-top-color: #78b9e6; }
252
+ border-top-color: #78bae6; }
129
253
 
130
254
  /*********************************************
131
255
  * PROGRESS BAR
@@ -137,8 +261,6 @@ body {
137
261
  background: #268bd2;
138
262
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
139
263
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
140
- -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
141
- -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
142
264
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
143
265
 
144
266
  /*********************************************
@@ -9,61 +9,189 @@
9
9
  * GLOBAL STYLES
10
10
  *********************************************/
11
11
  body {
12
- background: #111111;
13
- background-color: #111111; }
12
+ background: #111;
13
+ background-color: #111; }
14
14
 
15
15
  .reveal {
16
- font-family: "Open Sans", sans-serif;
16
+ font-family: 'Open Sans', sans-serif;
17
17
  font-size: 30px;
18
18
  font-weight: normal;
19
- letter-spacing: -0.02em;
20
- color: #eeeeee; }
19
+ color: #eee; }
21
20
 
22
21
  ::selection {
23
- color: white;
22
+ color: #fff;
24
23
  background: #e7ad52;
25
24
  text-shadow: none; }
26
25
 
26
+ .reveal .slides > section, .reveal .slides > section > section {
27
+ line-height: 1.3;
28
+ font-weight: inherit; }
29
+
27
30
  /*********************************************
28
31
  * HEADERS
29
32
  *********************************************/
30
- .reveal h1,
31
- .reveal h2,
32
- .reveal h3,
33
- .reveal h4,
34
- .reveal h5,
35
- .reveal h6 {
33
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
36
34
  margin: 0 0 20px 0;
37
- color: #eeeeee;
38
- font-family: "Montserrat", Impact, sans-serif;
39
- line-height: 0.9em;
35
+ color: #eee;
36
+ font-family: 'Montserrat', Impact, sans-serif;
37
+ line-height: 1.2;
40
38
  letter-spacing: -0.03em;
41
39
  text-transform: none;
42
- text-shadow: none; }
40
+ text-shadow: none;
41
+ word-wrap: break-word; }
42
+
43
+ .reveal h1 {
44
+ font-size: 3.77em; }
45
+
46
+ .reveal h2 {
47
+ font-size: 2.11em; }
48
+
49
+ .reveal h3 {
50
+ font-size: 1.55em; }
51
+
52
+ .reveal h4 {
53
+ font-size: 1em; }
43
54
 
44
55
  .reveal h1 {
45
- text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
56
+ text-shadow: none; }
57
+
58
+ /*********************************************
59
+ * OTHER
60
+ *********************************************/
61
+ .reveal p {
62
+ margin-bottom: 10px;
63
+ line-height: 1.3; }
64
+
65
+ /* Ensure certain elements are never larger than the slide itself */
66
+ .reveal img, .reveal video, .reveal iframe {
67
+ max-width: 95%;
68
+ max-height: 95%; }
69
+
70
+ .reveal strong, .reveal b {
71
+ font-weight: bold; }
72
+
73
+ .reveal em {
74
+ font-style: italic; }
75
+
76
+ .reveal ol, .reveal dl, .reveal ul {
77
+ display: inline-block;
78
+ text-align: left;
79
+ margin: 0 0 0 1em; }
80
+
81
+ .reveal ol {
82
+ list-style-type: decimal; }
83
+
84
+ .reveal ul {
85
+ list-style-type: disc; }
86
+
87
+ .reveal ul ul {
88
+ list-style-type: square; }
89
+
90
+ .reveal ul ul ul {
91
+ list-style-type: circle; }
92
+
93
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
94
+ display: block;
95
+ margin-left: 40px; }
96
+
97
+ .reveal dt {
98
+ font-weight: bold; }
99
+
100
+ .reveal dd {
101
+ margin-left: 40px; }
102
+
103
+ .reveal q, .reveal blockquote {
104
+ quotes: none; }
105
+
106
+ .reveal blockquote {
107
+ display: block;
108
+ position: relative;
109
+ width: 70%;
110
+ margin: 5px auto;
111
+ padding: 5px;
112
+ font-style: italic;
113
+ background: rgba(255, 255, 255, 0.05);
114
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
115
+
116
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
117
+ display: inline-block; }
118
+
119
+ .reveal q {
120
+ font-style: italic; }
121
+
122
+ .reveal pre {
123
+ display: block;
124
+ position: relative;
125
+ width: 90%;
126
+ margin: 15px auto;
127
+ text-align: left;
128
+ font-size: 0.55em;
129
+ font-family: monospace;
130
+ line-height: 1.2em;
131
+ word-wrap: break-word;
132
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
133
+
134
+ .reveal code {
135
+ font-family: monospace; }
136
+
137
+ .reveal pre code {
138
+ display: block;
139
+ padding: 5px;
140
+ overflow: auto;
141
+ max-height: 400px;
142
+ word-wrap: normal;
143
+ background: #3F3F3F;
144
+ color: #DCDCDC; }
145
+
146
+ .reveal table {
147
+ margin: auto;
148
+ border-collapse: collapse;
149
+ border-spacing: 0; }
150
+
151
+ .reveal table th {
152
+ font-weight: bold; }
153
+
154
+ .reveal table th, .reveal table td {
155
+ text-align: left;
156
+ padding: 0.2em 0.5em 0.2em 0.5em;
157
+ border-bottom: 1px solid; }
158
+
159
+ .reveal table tr:last-child td {
160
+ border-bottom: none; }
161
+
162
+ .reveal sup {
163
+ vertical-align: super; }
164
+
165
+ .reveal sub {
166
+ vertical-align: sub; }
167
+
168
+ .reveal small {
169
+ display: inline-block;
170
+ font-size: 0.6em;
171
+ line-height: 1.2em;
172
+ vertical-align: top; }
173
+
174
+ .reveal small * {
175
+ vertical-align: top; }
46
176
 
47
177
  /*********************************************
48
178
  * LINKS
49
179
  *********************************************/
50
- .reveal a:not(.image) {
180
+ .reveal a {
51
181
  color: #e7ad52;
52
182
  text-decoration: none;
53
- -webkit-transition: color .15s ease;
54
- -moz-transition: color .15s ease;
55
- -ms-transition: color .15s ease;
56
- -o-transition: color .15s ease;
57
- transition: color .15s ease; }
183
+ -webkit-transition: color 0.15s ease;
184
+ -moz-transition: color 0.15s ease;
185
+ transition: color 0.15s ease; }
58
186
 
59
- .reveal a:not(.image):hover {
187
+ .reveal a:hover {
60
188
  color: #f3d7ac;
61
189
  text-shadow: none;
62
190
  border: none; }
63
191
 
64
192
  .reveal .roll span:after {
65
193
  color: #fff;
66
- background: #d08a1d; }
194
+ background: #d0881d; }
67
195
 
68
196
  /*********************************************
69
197
  * IMAGES
@@ -71,13 +199,13 @@ body {
71
199
  .reveal section img {
72
200
  margin: 15px 0px;
73
201
  background: rgba(255, 255, 255, 0.12);
74
- border: 4px solid #eeeeee;
75
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
76
- -webkit-transition: all .2s linear;
77
- -moz-transition: all .2s linear;
78
- -ms-transition: all .2s linear;
79
- -o-transition: all .2s linear;
80
- transition: all .2s linear; }
202
+ border: 4px solid #eee;
203
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
204
+
205
+ .reveal a img {
206
+ -webkit-transition: all 0.15s linear;
207
+ -moz-transition: all 0.15s linear;
208
+ transition: all 0.15s linear; }
81
209
 
82
210
  .reveal a:hover img {
83
211
  background: rgba(255, 255, 255, 0.2);
@@ -87,20 +215,16 @@ body {
87
215
  /*********************************************
88
216
  * NAVIGATION CONTROLS
89
217
  *********************************************/
90
- .reveal .controls div.navigate-left,
91
- .reveal .controls div.navigate-left.enabled {
218
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
92
219
  border-right-color: #e7ad52; }
93
220
 
94
- .reveal .controls div.navigate-right,
95
- .reveal .controls div.navigate-right.enabled {
221
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
96
222
  border-left-color: #e7ad52; }
97
223
 
98
- .reveal .controls div.navigate-up,
99
- .reveal .controls div.navigate-up.enabled {
224
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
100
225
  border-bottom-color: #e7ad52; }
101
226
 
102
- .reveal .controls div.navigate-down,
103
- .reveal .controls div.navigate-down.enabled {
227
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
104
228
  border-top-color: #e7ad52; }
105
229
 
106
230
  .reveal .controls div.navigate-left.enabled:hover {
@@ -125,8 +249,6 @@ body {
125
249
  background: #e7ad52;
126
250
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
127
251
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
128
- -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
129
- -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
130
252
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
131
253
 
132
254
  /*********************************************