slideparts 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +8 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +40 -0
  8. data/Rakefile +7 -0
  9. data/bin/slide +5 -0
  10. data/lib/slide_template/Guardfile +3 -0
  11. data/lib/slide_template/_layouts/default.html.erb +74 -0
  12. data/lib/slide_template/css/print/paper.css +202 -0
  13. data/lib/slide_template/css/print/pdf.css +157 -0
  14. data/lib/slide_template/css/reveal.css +1141 -0
  15. data/lib/slide_template/css/reveal.scss +1316 -0
  16. data/lib/slide_template/css/theme/README.md +25 -0
  17. data/lib/slide_template/css/theme/beige.css +265 -0
  18. data/lib/slide_template/css/theme/black.css +261 -0
  19. data/lib/slide_template/css/theme/blood.css +291 -0
  20. data/lib/slide_template/css/theme/league.css +267 -0
  21. data/lib/slide_template/css/theme/moon.css +265 -0
  22. data/lib/slide_template/css/theme/night.css +259 -0
  23. data/lib/slide_template/css/theme/serif.css +261 -0
  24. data/lib/slide_template/css/theme/simple.css +261 -0
  25. data/lib/slide_template/css/theme/sky.css +268 -0
  26. data/lib/slide_template/css/theme/solarized.css +265 -0
  27. data/lib/slide_template/css/theme/source/beige.scss +39 -0
  28. data/lib/slide_template/css/theme/source/black.scss +49 -0
  29. data/lib/slide_template/css/theme/source/blood.scss +91 -0
  30. data/lib/slide_template/css/theme/source/league.scss +34 -0
  31. data/lib/slide_template/css/theme/source/moon.scss +57 -0
  32. data/lib/slide_template/css/theme/source/night.scss +35 -0
  33. data/lib/slide_template/css/theme/source/serif.scss +35 -0
  34. data/lib/slide_template/css/theme/source/simple.scss +38 -0
  35. data/lib/slide_template/css/theme/source/sky.scss +46 -0
  36. data/lib/slide_template/css/theme/source/solarized.scss +63 -0
  37. data/lib/slide_template/css/theme/source/white.scss +49 -0
  38. data/lib/slide_template/css/theme/template/mixins.scss +29 -0
  39. data/lib/slide_template/css/theme/template/settings.scss +43 -0
  40. data/lib/slide_template/css/theme/template/theme.scss +339 -0
  41. data/lib/slide_template/css/theme/white.css +261 -0
  42. data/lib/slide_template/index.haml +5 -0
  43. data/lib/slide_template/js/reveal.js +4276 -0
  44. data/lib/slide_template/lib/css/zenburn.css +117 -0
  45. data/lib/slide_template/lib/font/league-gothic/LICENSE +2 -0
  46. data/lib/slide_template/lib/font/league-gothic/league-gothic.css +10 -0
  47. data/lib/slide_template/lib/font/league-gothic/league-gothic.eot +0 -0
  48. data/lib/slide_template/lib/font/league-gothic/league-gothic.ttf +0 -0
  49. data/lib/slide_template/lib/font/league-gothic/league-gothic.woff +0 -0
  50. data/lib/slide_template/lib/font/source-sans-pro/LICENSE +45 -0
  51. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  52. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  53. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  54. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  55. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  56. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  57. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  58. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  59. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  60. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  61. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  62. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  63. data/lib/slide_template/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  64. data/lib/slide_template/lib/js/classList.js +2 -0
  65. data/lib/slide_template/lib/js/head.min.js +8 -0
  66. data/lib/slide_template/lib/js/html5shiv.js +7 -0
  67. data/lib/slide_template/plugin/highlight/highlight.js +30 -0
  68. data/lib/slide_template/plugin/leap/leap.js +159 -0
  69. data/lib/slide_template/plugin/markdown/example.html +129 -0
  70. data/lib/slide_template/plugin/markdown/example.md +31 -0
  71. data/lib/slide_template/plugin/markdown/markdown.js +393 -0
  72. data/lib/slide_template/plugin/markdown/marked.js +37 -0
  73. data/lib/slide_template/plugin/math/math.js +64 -0
  74. data/lib/slide_template/plugin/multiplex/client.js +13 -0
  75. data/lib/slide_template/plugin/multiplex/index.js +56 -0
  76. data/lib/slide_template/plugin/multiplex/master.js +51 -0
  77. data/lib/slide_template/plugin/notes-server/client.js +60 -0
  78. data/lib/slide_template/plugin/notes-server/index.js +66 -0
  79. data/lib/slide_template/plugin/notes-server/notes.html +396 -0
  80. data/lib/slide_template/plugin/notes/notes.html +406 -0
  81. data/lib/slide_template/plugin/notes/notes.js +122 -0
  82. data/lib/slide_template/plugin/print-pdf/print-pdf.js +48 -0
  83. data/lib/slide_template/plugin/remotes/remotes.js +39 -0
  84. data/lib/slide_template/plugin/search/search.js +196 -0
  85. data/lib/slide_template/plugin/zoom-js/zoom.js +278 -0
  86. data/lib/slideparts.rb +20 -0
  87. data/lib/slideparts/command.rb +38 -0
  88. data/lib/slideparts/commands/build.rb +34 -0
  89. data/lib/slideparts/commands/new.rb +23 -0
  90. data/lib/slideparts/commands/server.rb +26 -0
  91. data/lib/slideparts/version.rb +3 -0
  92. data/slideparts.gemspec +24 -0
  93. data/spec/command_spec.rb +9 -0
  94. data/spec/spec_helper.rb +2 -0
  95. metadata +182 -0
@@ -0,0 +1,268 @@
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
+ /**
4
+ * Sky theme for reveal.js.
5
+ *
6
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ .reveal a {
9
+ line-height: 1.3em; }
10
+
11
+ /*********************************************
12
+ * GLOBAL STYLES
13
+ *********************************************/
14
+ body {
15
+ background: #add9e4;
16
+ background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
17
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));
18
+ background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
19
+ background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
20
+ background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
21
+ background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
22
+ background-color: #f7fbfc; }
23
+
24
+ .reveal {
25
+ font-family: 'Open Sans', sans-serif;
26
+ font-size: 36px;
27
+ font-weight: normal;
28
+ color: #333; }
29
+
30
+ ::selection {
31
+ color: #fff;
32
+ background: #134674;
33
+ text-shadow: none; }
34
+
35
+ .reveal .slides > section, .reveal .slides > section > section {
36
+ line-height: 1.3;
37
+ font-weight: inherit; }
38
+
39
+ /*********************************************
40
+ * HEADERS
41
+ *********************************************/
42
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
43
+ margin: 0 0 20px 0;
44
+ color: #333;
45
+ font-family: 'Quicksand', sans-serif;
46
+ font-weight: normal;
47
+ line-height: 1.2;
48
+ letter-spacing: -0.08em;
49
+ text-transform: uppercase;
50
+ text-shadow: none;
51
+ word-wrap: break-word; }
52
+
53
+ .reveal h1 {
54
+ font-size: 3.77em; }
55
+
56
+ .reveal h2 {
57
+ font-size: 2.11em; }
58
+
59
+ .reveal h3 {
60
+ font-size: 1.55em; }
61
+
62
+ .reveal h4 {
63
+ font-size: 1em; }
64
+
65
+ .reveal h1 {
66
+ text-shadow: none; }
67
+
68
+ /*********************************************
69
+ * OTHER
70
+ *********************************************/
71
+ .reveal p {
72
+ margin: 20px 0;
73
+ line-height: 1.3; }
74
+
75
+ /* Ensure certain elements are never larger than the slide itself */
76
+ .reveal img, .reveal video, .reveal iframe {
77
+ max-width: 95%;
78
+ max-height: 95%; }
79
+
80
+ .reveal strong, .reveal b {
81
+ font-weight: bold; }
82
+
83
+ .reveal em {
84
+ font-style: italic; }
85
+
86
+ .reveal ol, .reveal dl, .reveal ul {
87
+ display: inline-block;
88
+ text-align: left;
89
+ margin: 0 0 0 1em; }
90
+
91
+ .reveal ol {
92
+ list-style-type: decimal; }
93
+
94
+ .reveal ul {
95
+ list-style-type: disc; }
96
+
97
+ .reveal ul ul {
98
+ list-style-type: square; }
99
+
100
+ .reveal ul ul ul {
101
+ list-style-type: circle; }
102
+
103
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
104
+ display: block;
105
+ margin-left: 40px; }
106
+
107
+ .reveal dt {
108
+ font-weight: bold; }
109
+
110
+ .reveal dd {
111
+ margin-left: 40px; }
112
+
113
+ .reveal q, .reveal blockquote {
114
+ quotes: none; }
115
+
116
+ .reveal blockquote {
117
+ display: block;
118
+ position: relative;
119
+ width: 70%;
120
+ margin: 20px auto;
121
+ padding: 5px;
122
+ font-style: italic;
123
+ background: rgba(255, 255, 255, 0.05);
124
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
125
+
126
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
127
+ display: inline-block; }
128
+
129
+ .reveal q {
130
+ font-style: italic; }
131
+
132
+ .reveal pre {
133
+ display: block;
134
+ position: relative;
135
+ width: 90%;
136
+ margin: 20px auto;
137
+ text-align: left;
138
+ font-size: 0.55em;
139
+ font-family: monospace;
140
+ line-height: 1.2em;
141
+ word-wrap: break-word;
142
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
143
+
144
+ .reveal code {
145
+ font-family: monospace; }
146
+
147
+ .reveal pre code {
148
+ display: block;
149
+ padding: 5px;
150
+ overflow: auto;
151
+ max-height: 400px;
152
+ word-wrap: normal;
153
+ background: #3F3F3F;
154
+ color: #DCDCDC; }
155
+
156
+ .reveal table {
157
+ margin: auto;
158
+ border-collapse: collapse;
159
+ border-spacing: 0; }
160
+
161
+ .reveal table th {
162
+ font-weight: bold; }
163
+
164
+ .reveal table th, .reveal table td {
165
+ text-align: left;
166
+ padding: 0.2em 0.5em 0.2em 0.5em;
167
+ border-bottom: 1px solid; }
168
+
169
+ .reveal table tr:last-child td {
170
+ border-bottom: none; }
171
+
172
+ .reveal sup {
173
+ vertical-align: super; }
174
+
175
+ .reveal sub {
176
+ vertical-align: sub; }
177
+
178
+ .reveal small {
179
+ display: inline-block;
180
+ font-size: 0.6em;
181
+ line-height: 1.2em;
182
+ vertical-align: top; }
183
+
184
+ .reveal small * {
185
+ vertical-align: top; }
186
+
187
+ /*********************************************
188
+ * LINKS
189
+ *********************************************/
190
+ .reveal a {
191
+ color: #3b759e;
192
+ text-decoration: none;
193
+ -webkit-transition: color 0.15s ease;
194
+ -moz-transition: color 0.15s ease;
195
+ transition: color 0.15s ease; }
196
+
197
+ .reveal a:hover {
198
+ color: #74a8cb;
199
+ text-shadow: none;
200
+ border: none; }
201
+
202
+ .reveal .roll span:after {
203
+ color: #fff;
204
+ background: #264d66; }
205
+
206
+ /*********************************************
207
+ * IMAGES
208
+ *********************************************/
209
+ .reveal section img {
210
+ margin: 15px 0px;
211
+ background: rgba(255, 255, 255, 0.12);
212
+ border: 4px solid #333;
213
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
214
+
215
+ .reveal a img {
216
+ -webkit-transition: all 0.15s linear;
217
+ -moz-transition: all 0.15s linear;
218
+ transition: all 0.15s linear; }
219
+
220
+ .reveal a:hover img {
221
+ background: rgba(255, 255, 255, 0.2);
222
+ border-color: #3b759e;
223
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
224
+
225
+ /*********************************************
226
+ * NAVIGATION CONTROLS
227
+ *********************************************/
228
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
229
+ border-right-color: #3b759e; }
230
+
231
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
232
+ border-left-color: #3b759e; }
233
+
234
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
235
+ border-bottom-color: #3b759e; }
236
+
237
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
238
+ border-top-color: #3b759e; }
239
+
240
+ .reveal .controls div.navigate-left.enabled:hover {
241
+ border-right-color: #74a8cb; }
242
+
243
+ .reveal .controls div.navigate-right.enabled:hover {
244
+ border-left-color: #74a8cb; }
245
+
246
+ .reveal .controls div.navigate-up.enabled:hover {
247
+ border-bottom-color: #74a8cb; }
248
+
249
+ .reveal .controls div.navigate-down.enabled:hover {
250
+ border-top-color: #74a8cb; }
251
+
252
+ /*********************************************
253
+ * PROGRESS BAR
254
+ *********************************************/
255
+ .reveal .progress {
256
+ background: rgba(0, 0, 0, 0.2); }
257
+
258
+ .reveal .progress span {
259
+ background: #3b759e;
260
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
261
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
262
+ 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; }
@@ -0,0 +1,265 @@
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
+ /**
4
+ * Solarized Light theme for reveal.js.
5
+ * Author: Achim Staebler
6
+ */
7
+ /**
8
+ * Solarized colors by Ethan Schoonover
9
+ */
10
+ html * {
11
+ color-profile: sRGB;
12
+ rendering-intent: auto; }
13
+
14
+ /*********************************************
15
+ * GLOBAL STYLES
16
+ *********************************************/
17
+ body {
18
+ background: #fdf6e3;
19
+ background-color: #fdf6e3; }
20
+
21
+ .reveal {
22
+ font-family: 'Lato', sans-serif;
23
+ font-size: 36px;
24
+ font-weight: normal;
25
+ color: #657b83; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: #d33682;
30
+ text-shadow: none; }
31
+
32
+ .reveal .slides > section, .reveal .slides > section > section {
33
+ line-height: 1.3;
34
+ font-weight: inherit; }
35
+
36
+ /*********************************************
37
+ * HEADERS
38
+ *********************************************/
39
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
40
+ margin: 0 0 20px 0;
41
+ color: #586e75;
42
+ font-family: 'League Gothic', Impact, sans-serif;
43
+ font-weight: normal;
44
+ line-height: 1.2;
45
+ letter-spacing: normal;
46
+ text-transform: uppercase;
47
+ text-shadow: none;
48
+ word-wrap: break-word; }
49
+
50
+ .reveal h1 {
51
+ font-size: 3.77em; }
52
+
53
+ .reveal h2 {
54
+ font-size: 2.11em; }
55
+
56
+ .reveal h3 {
57
+ font-size: 1.55em; }
58
+
59
+ .reveal h4 {
60
+ font-size: 1em; }
61
+
62
+ .reveal h1 {
63
+ text-shadow: none; }
64
+
65
+ /*********************************************
66
+ * OTHER
67
+ *********************************************/
68
+ .reveal p {
69
+ margin: 20px 0;
70
+ line-height: 1.3; }
71
+
72
+ /* Ensure certain elements are never larger than the slide itself */
73
+ .reveal img, .reveal video, .reveal iframe {
74
+ max-width: 95%;
75
+ max-height: 95%; }
76
+
77
+ .reveal strong, .reveal b {
78
+ font-weight: bold; }
79
+
80
+ .reveal em {
81
+ font-style: italic; }
82
+
83
+ .reveal ol, .reveal dl, .reveal ul {
84
+ display: inline-block;
85
+ text-align: left;
86
+ margin: 0 0 0 1em; }
87
+
88
+ .reveal ol {
89
+ list-style-type: decimal; }
90
+
91
+ .reveal ul {
92
+ list-style-type: disc; }
93
+
94
+ .reveal ul ul {
95
+ list-style-type: square; }
96
+
97
+ .reveal ul ul ul {
98
+ list-style-type: circle; }
99
+
100
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
101
+ display: block;
102
+ margin-left: 40px; }
103
+
104
+ .reveal dt {
105
+ font-weight: bold; }
106
+
107
+ .reveal dd {
108
+ margin-left: 40px; }
109
+
110
+ .reveal q, .reveal blockquote {
111
+ quotes: none; }
112
+
113
+ .reveal blockquote {
114
+ display: block;
115
+ position: relative;
116
+ width: 70%;
117
+ margin: 20px auto;
118
+ padding: 5px;
119
+ font-style: italic;
120
+ background: rgba(255, 255, 255, 0.05);
121
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
122
+
123
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
124
+ display: inline-block; }
125
+
126
+ .reveal q {
127
+ font-style: italic; }
128
+
129
+ .reveal pre {
130
+ display: block;
131
+ position: relative;
132
+ width: 90%;
133
+ margin: 20px auto;
134
+ text-align: left;
135
+ font-size: 0.55em;
136
+ font-family: monospace;
137
+ line-height: 1.2em;
138
+ word-wrap: break-word;
139
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
140
+
141
+ .reveal code {
142
+ font-family: monospace; }
143
+
144
+ .reveal pre code {
145
+ display: block;
146
+ padding: 5px;
147
+ overflow: auto;
148
+ max-height: 400px;
149
+ word-wrap: normal;
150
+ background: #3F3F3F;
151
+ color: #DCDCDC; }
152
+
153
+ .reveal table {
154
+ margin: auto;
155
+ border-collapse: collapse;
156
+ border-spacing: 0; }
157
+
158
+ .reveal table th {
159
+ font-weight: bold; }
160
+
161
+ .reveal table th, .reveal table td {
162
+ text-align: left;
163
+ padding: 0.2em 0.5em 0.2em 0.5em;
164
+ border-bottom: 1px solid; }
165
+
166
+ .reveal table tr:last-child td {
167
+ border-bottom: none; }
168
+
169
+ .reveal sup {
170
+ vertical-align: super; }
171
+
172
+ .reveal sub {
173
+ vertical-align: sub; }
174
+
175
+ .reveal small {
176
+ display: inline-block;
177
+ font-size: 0.6em;
178
+ line-height: 1.2em;
179
+ vertical-align: top; }
180
+
181
+ .reveal small * {
182
+ vertical-align: top; }
183
+
184
+ /*********************************************
185
+ * LINKS
186
+ *********************************************/
187
+ .reveal a {
188
+ color: #268bd2;
189
+ text-decoration: none;
190
+ -webkit-transition: color 0.15s ease;
191
+ -moz-transition: color 0.15s ease;
192
+ transition: color 0.15s ease; }
193
+
194
+ .reveal a:hover {
195
+ color: #78bae6;
196
+ text-shadow: none;
197
+ border: none; }
198
+
199
+ .reveal .roll span:after {
200
+ color: #fff;
201
+ background: #1a6291; }
202
+
203
+ /*********************************************
204
+ * IMAGES
205
+ *********************************************/
206
+ .reveal section img {
207
+ margin: 15px 0px;
208
+ background: rgba(255, 255, 255, 0.12);
209
+ border: 4px solid #657b83;
210
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
211
+
212
+ .reveal a img {
213
+ -webkit-transition: all 0.15s linear;
214
+ -moz-transition: all 0.15s linear;
215
+ transition: all 0.15s linear; }
216
+
217
+ .reveal a:hover img {
218
+ background: rgba(255, 255, 255, 0.2);
219
+ border-color: #268bd2;
220
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
221
+
222
+ /*********************************************
223
+ * NAVIGATION CONTROLS
224
+ *********************************************/
225
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
226
+ border-right-color: #268bd2; }
227
+
228
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
229
+ border-left-color: #268bd2; }
230
+
231
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
232
+ border-bottom-color: #268bd2; }
233
+
234
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
235
+ border-top-color: #268bd2; }
236
+
237
+ .reveal .controls div.navigate-left.enabled:hover {
238
+ border-right-color: #78bae6; }
239
+
240
+ .reveal .controls div.navigate-right.enabled:hover {
241
+ border-left-color: #78bae6; }
242
+
243
+ .reveal .controls div.navigate-up.enabled:hover {
244
+ border-bottom-color: #78bae6; }
245
+
246
+ .reveal .controls div.navigate-down.enabled:hover {
247
+ border-top-color: #78bae6; }
248
+
249
+ /*********************************************
250
+ * PROGRESS BAR
251
+ *********************************************/
252
+ .reveal .progress {
253
+ background: rgba(0, 0, 0, 0.2); }
254
+
255
+ .reveal .progress span {
256
+ background: #268bd2;
257
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
258
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
259
+ 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; }