slidemgr 1.0.1

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.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +13 -0
  6. data/LICENCE +674 -0
  7. data/README.md +153 -0
  8. data/Rakefile +3 -0
  9. data/bin/setup +7 -0
  10. data/bin/slidemgr +10 -0
  11. data/config.yml +0 -0
  12. data/lib/command_router.rb +27 -0
  13. data/lib/commands/create.rb +61 -0
  14. data/lib/commands/init.rb +78 -0
  15. data/lib/commands/list.rb +12 -0
  16. data/lib/commands/refresh.rb +49 -0
  17. data/lib/commands/remove.rb +32 -0
  18. data/lib/commands/rename.rb +31 -0
  19. data/lib/commands/start.rb +36 -0
  20. data/lib/commands/sync.rb +31 -0
  21. data/lib/template/config.yml.erb +4 -0
  22. data/lib/template/content.md.erb +2 -0
  23. data/lib/template/index.erb +103 -0
  24. data/lib/template/overview_index.erb +9 -0
  25. data/lib/template/reveal.js-3.0.0/.DS_Store +0 -0
  26. data/lib/template/reveal.js-3.0.0/Gruntfile.js +174 -0
  27. data/lib/template/reveal.js-3.0.0/LICENSE +19 -0
  28. data/lib/template/reveal.js-3.0.0/css/print/paper.css +202 -0
  29. data/lib/template/reveal.js-3.0.0/css/print/pdf.css +157 -0
  30. data/lib/template/reveal.js-3.0.0/css/reveal.css +1141 -0
  31. data/lib/template/reveal.js-3.0.0/css/reveal.scss +1316 -0
  32. data/lib/template/reveal.js-3.0.0/css/theme/README.md +25 -0
  33. data/lib/template/reveal.js-3.0.0/css/theme/beige.css +265 -0
  34. data/lib/template/reveal.js-3.0.0/css/theme/black.css +261 -0
  35. data/lib/template/reveal.js-3.0.0/css/theme/blood.css +291 -0
  36. data/lib/template/reveal.js-3.0.0/css/theme/league.css +267 -0
  37. data/lib/template/reveal.js-3.0.0/css/theme/moon.css +265 -0
  38. data/lib/template/reveal.js-3.0.0/css/theme/night.css +259 -0
  39. data/lib/template/reveal.js-3.0.0/css/theme/serif.css +261 -0
  40. data/lib/template/reveal.js-3.0.0/css/theme/simple.css +261 -0
  41. data/lib/template/reveal.js-3.0.0/css/theme/sky.css +268 -0
  42. data/lib/template/reveal.js-3.0.0/css/theme/solarized.css +265 -0
  43. data/lib/template/reveal.js-3.0.0/css/theme/source/beige.scss +39 -0
  44. data/lib/template/reveal.js-3.0.0/css/theme/source/black.scss +49 -0
  45. data/lib/template/reveal.js-3.0.0/css/theme/source/blood.scss +91 -0
  46. data/lib/template/reveal.js-3.0.0/css/theme/source/league.scss +34 -0
  47. data/lib/template/reveal.js-3.0.0/css/theme/source/moon.scss +57 -0
  48. data/lib/template/reveal.js-3.0.0/css/theme/source/night.scss +35 -0
  49. data/lib/template/reveal.js-3.0.0/css/theme/source/serif.scss +35 -0
  50. data/lib/template/reveal.js-3.0.0/css/theme/source/simple.scss +38 -0
  51. data/lib/template/reveal.js-3.0.0/css/theme/source/sky.scss +46 -0
  52. data/lib/template/reveal.js-3.0.0/css/theme/source/solarized.scss +63 -0
  53. data/lib/template/reveal.js-3.0.0/css/theme/source/white.scss +49 -0
  54. data/lib/template/reveal.js-3.0.0/css/theme/template/mixins.scss +29 -0
  55. data/lib/template/reveal.js-3.0.0/css/theme/template/settings.scss +43 -0
  56. data/lib/template/reveal.js-3.0.0/css/theme/template/theme.scss +339 -0
  57. data/lib/template/reveal.js-3.0.0/css/theme/white.css +261 -0
  58. data/lib/template/reveal.js-3.0.0/js/reveal.js +4276 -0
  59. data/lib/template/reveal.js-3.0.0/lib/css/zenburn.css +117 -0
  60. data/lib/template/reveal.js-3.0.0/lib/font/league-gothic/LICENSE +2 -0
  61. data/lib/template/reveal.js-3.0.0/lib/font/league-gothic/league-gothic.css +10 -0
  62. data/lib/template/reveal.js-3.0.0/lib/font/league-gothic/league-gothic.eot +0 -0
  63. data/lib/template/reveal.js-3.0.0/lib/font/league-gothic/league-gothic.ttf +0 -0
  64. data/lib/template/reveal.js-3.0.0/lib/font/league-gothic/league-gothic.woff +0 -0
  65. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/LICENSE +45 -0
  66. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  67. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  68. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  69. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  70. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  71. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  72. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  73. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  74. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  75. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  76. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  77. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  78. data/lib/template/reveal.js-3.0.0/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  79. data/lib/template/reveal.js-3.0.0/lib/js/classList.js +2 -0
  80. data/lib/template/reveal.js-3.0.0/lib/js/head.min.js +8 -0
  81. data/lib/template/reveal.js-3.0.0/lib/js/html5shiv.js +7 -0
  82. data/lib/template/reveal.js-3.0.0/plugin/highlight/highlight.js +30 -0
  83. data/lib/template/reveal.js-3.0.0/plugin/leap/leap.js +159 -0
  84. data/lib/template/reveal.js-3.0.0/plugin/markdown/example.html +129 -0
  85. data/lib/template/reveal.js-3.0.0/plugin/markdown/example.md +31 -0
  86. data/lib/template/reveal.js-3.0.0/plugin/markdown/markdown.js +393 -0
  87. data/lib/template/reveal.js-3.0.0/plugin/markdown/marked.js +37 -0
  88. data/lib/template/reveal.js-3.0.0/plugin/math/math.js +64 -0
  89. data/lib/template/reveal.js-3.0.0/plugin/multiplex/client.js +13 -0
  90. data/lib/template/reveal.js-3.0.0/plugin/multiplex/index.js +56 -0
  91. data/lib/template/reveal.js-3.0.0/plugin/multiplex/master.js +51 -0
  92. data/lib/template/reveal.js-3.0.0/plugin/notes/notes.html +406 -0
  93. data/lib/template/reveal.js-3.0.0/plugin/notes/notes.js +122 -0
  94. data/lib/template/reveal.js-3.0.0/plugin/notes-server/client.js +60 -0
  95. data/lib/template/reveal.js-3.0.0/plugin/notes-server/index.js +66 -0
  96. data/lib/template/reveal.js-3.0.0/plugin/notes-server/notes.html +396 -0
  97. data/lib/template/reveal.js-3.0.0/plugin/print-pdf/print-pdf.js +48 -0
  98. data/lib/template/reveal.js-3.0.0/plugin/remotes/remotes.js +39 -0
  99. data/lib/template/reveal.js-3.0.0/plugin/search/search.js +196 -0
  100. data/lib/template/reveal.js-3.0.0/plugin/zoom-js/zoom.js +278 -0
  101. data/lib/template/reveal.js-3.0.0/test/examples/assets/image1.png +0 -0
  102. data/lib/template/reveal.js-3.0.0/test/examples/assets/image2.png +0 -0
  103. data/lib/template/reveal.js-3.0.0/test/examples/barebones.html +41 -0
  104. data/lib/template/reveal.js-3.0.0/test/examples/embedded-media.html +49 -0
  105. data/lib/template/reveal.js-3.0.0/test/examples/math.html +185 -0
  106. data/lib/template/reveal.js-3.0.0/test/examples/slide-backgrounds.html +144 -0
  107. data/lib/template/reveal.js-3.0.0/test/qunit-1.12.0.css +244 -0
  108. data/lib/template/reveal.js-3.0.0/test/qunit-1.12.0.js +2212 -0
  109. data/lib/template/reveal.js-3.0.0/test/test-markdown-element-attributes.html +134 -0
  110. data/lib/template/reveal.js-3.0.0/test/test-markdown-element-attributes.js +46 -0
  111. data/lib/template/reveal.js-3.0.0/test/test-markdown-slide-attributes.html +128 -0
  112. data/lib/template/reveal.js-3.0.0/test/test-markdown-slide-attributes.js +47 -0
  113. data/lib/template/reveal.js-3.0.0/test/test-markdown.html +52 -0
  114. data/lib/template/reveal.js-3.0.0/test/test-markdown.js +15 -0
  115. data/lib/template/reveal.js-3.0.0/test/test-pdf.html +83 -0
  116. data/lib/template/reveal.js-3.0.0/test/test-pdf.js +15 -0
  117. data/lib/template/reveal.js-3.0.0/test/test.html +82 -0
  118. data/lib/template/reveal.js-3.0.0/test/test.js +572 -0
  119. data/lib/util.rb +99 -0
  120. data/lib/version.rb +3 -0
  121. data/slidemgr.gemspec +24 -0
  122. metadata +193 -0
@@ -0,0 +1,339 @@
1
+ // Base theme template for reveal.js
2
+
3
+ /*********************************************
4
+ * GLOBAL STYLES
5
+ *********************************************/
6
+
7
+ body {
8
+ @include bodyBackground();
9
+ background-color: $backgroundColor;
10
+ }
11
+
12
+ .reveal {
13
+ font-family: $mainFont;
14
+ font-size: $mainFontSize;
15
+ font-weight: normal;
16
+ color: $mainColor;
17
+ }
18
+
19
+ ::selection {
20
+ color: $selectionColor;
21
+ background: $selectionBackgroundColor;
22
+ text-shadow: none;
23
+ }
24
+
25
+ .reveal .slides>section,
26
+ .reveal .slides>section>section {
27
+ line-height: 1.3;
28
+ font-weight: inherit;
29
+ }
30
+
31
+ /*********************************************
32
+ * HEADERS
33
+ *********************************************/
34
+
35
+ .reveal h1,
36
+ .reveal h2,
37
+ .reveal h3,
38
+ .reveal h4,
39
+ .reveal h5,
40
+ .reveal h6 {
41
+ margin: $headingMargin;
42
+ color: $headingColor;
43
+
44
+ font-family: $headingFont;
45
+ font-weight: $headingFontWeight;
46
+ line-height: $headingLineHeight;
47
+ letter-spacing: $headingLetterSpacing;
48
+
49
+ text-transform: $headingTextTransform;
50
+ text-shadow: $headingTextShadow;
51
+
52
+ word-wrap: break-word;
53
+ }
54
+
55
+ .reveal h1 {font-size: $heading1Size; }
56
+ .reveal h2 {font-size: $heading2Size; }
57
+ .reveal h3 {font-size: $heading3Size; }
58
+ .reveal h4 {font-size: $heading4Size; }
59
+
60
+ .reveal h1 {
61
+ text-shadow: $heading1TextShadow;
62
+ }
63
+
64
+
65
+ /*********************************************
66
+ * OTHER
67
+ *********************************************/
68
+
69
+ .reveal p {
70
+ margin: $blockMargin 0;
71
+ line-height: 1.3;
72
+ }
73
+
74
+ /* Ensure certain elements are never larger than the slide itself */
75
+ .reveal img,
76
+ .reveal video,
77
+ .reveal iframe {
78
+ max-width: 95%;
79
+ max-height: 95%;
80
+ }
81
+ .reveal strong,
82
+ .reveal b {
83
+ font-weight: bold;
84
+ }
85
+
86
+ .reveal em {
87
+ font-style: italic;
88
+ }
89
+
90
+ .reveal ol,
91
+ .reveal dl,
92
+ .reveal ul {
93
+ display: inline-block;
94
+
95
+ text-align: left;
96
+ margin: 0 0 0 1em;
97
+ }
98
+
99
+ .reveal ol {
100
+ list-style-type: decimal;
101
+ }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc;
105
+ }
106
+
107
+ .reveal ul ul {
108
+ list-style-type: square;
109
+ }
110
+
111
+ .reveal ul ul ul {
112
+ list-style-type: circle;
113
+ }
114
+
115
+ .reveal ul ul,
116
+ .reveal ul ol,
117
+ .reveal ol ol,
118
+ .reveal ol ul {
119
+ display: block;
120
+ margin-left: 40px;
121
+ }
122
+
123
+ .reveal dt {
124
+ font-weight: bold;
125
+ }
126
+
127
+ .reveal dd {
128
+ margin-left: 40px;
129
+ }
130
+
131
+ .reveal q,
132
+ .reveal blockquote {
133
+ quotes: none;
134
+ }
135
+
136
+ .reveal blockquote {
137
+ display: block;
138
+ position: relative;
139
+ width: 70%;
140
+ margin: $blockMargin auto;
141
+ padding: 5px;
142
+
143
+ font-style: italic;
144
+ background: rgba(255, 255, 255, 0.05);
145
+ box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
146
+ }
147
+ .reveal blockquote p:first-child,
148
+ .reveal blockquote p:last-child {
149
+ display: inline-block;
150
+ }
151
+
152
+ .reveal q {
153
+ font-style: italic;
154
+ }
155
+
156
+ .reveal pre {
157
+ display: block;
158
+ position: relative;
159
+ width: 90%;
160
+ margin: $blockMargin auto;
161
+
162
+ text-align: left;
163
+ font-size: 0.55em;
164
+ font-family: monospace;
165
+ line-height: 1.2em;
166
+
167
+ word-wrap: break-word;
168
+
169
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
170
+ }
171
+ .reveal code {
172
+ font-family: monospace;
173
+ }
174
+
175
+ .reveal pre code {
176
+ display: block;
177
+ padding: 5px;
178
+ overflow: auto;
179
+ max-height: 400px;
180
+ word-wrap: normal;
181
+ background: #3F3F3F;
182
+ color: #DCDCDC;
183
+ }
184
+
185
+ .reveal table {
186
+ margin: auto;
187
+ border-collapse: collapse;
188
+ border-spacing: 0;
189
+ }
190
+
191
+ .reveal table th {
192
+ font-weight: bold;
193
+ }
194
+
195
+ .reveal table th,
196
+ .reveal table td {
197
+ text-align: left;
198
+ padding: 0.2em 0.5em 0.2em 0.5em;
199
+ border-bottom: 1px solid;
200
+ }
201
+
202
+ .reveal table tr:last-child td {
203
+ border-bottom: none;
204
+ }
205
+
206
+ .reveal sup {
207
+ vertical-align: super;
208
+ }
209
+ .reveal sub {
210
+ vertical-align: sub;
211
+ }
212
+
213
+ .reveal small {
214
+ display: inline-block;
215
+ font-size: 0.6em;
216
+ line-height: 1.2em;
217
+ vertical-align: top;
218
+ }
219
+
220
+ .reveal small * {
221
+ vertical-align: top;
222
+ }
223
+
224
+
225
+ /*********************************************
226
+ * LINKS
227
+ *********************************************/
228
+
229
+ .reveal a {
230
+ color: $linkColor;
231
+ text-decoration: none;
232
+
233
+ -webkit-transition: color .15s ease;
234
+ -moz-transition: color .15s ease;
235
+ transition: color .15s ease;
236
+ }
237
+ .reveal a:hover {
238
+ color: $linkColorHover;
239
+
240
+ text-shadow: none;
241
+ border: none;
242
+ }
243
+
244
+ .reveal .roll span:after {
245
+ color: #fff;
246
+ background: darken( $linkColor, 15% );
247
+ }
248
+
249
+
250
+ /*********************************************
251
+ * IMAGES
252
+ *********************************************/
253
+
254
+ .reveal section img {
255
+ margin: 15px 0px;
256
+ background: rgba(255,255,255,0.12);
257
+ border: 4px solid $mainColor;
258
+
259
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
260
+ }
261
+
262
+ .reveal a img {
263
+ -webkit-transition: all .15s linear;
264
+ -moz-transition: all .15s linear;
265
+ transition: all .15s linear;
266
+ }
267
+
268
+ .reveal a:hover img {
269
+ background: rgba(255,255,255,0.2);
270
+ border-color: $linkColor;
271
+
272
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
273
+ }
274
+
275
+
276
+ /*********************************************
277
+ * NAVIGATION CONTROLS
278
+ *********************************************/
279
+
280
+ .reveal .controls div.navigate-left,
281
+ .reveal .controls div.navigate-left.enabled {
282
+ border-right-color: $linkColor;
283
+ }
284
+
285
+ .reveal .controls div.navigate-right,
286
+ .reveal .controls div.navigate-right.enabled {
287
+ border-left-color: $linkColor;
288
+ }
289
+
290
+ .reveal .controls div.navigate-up,
291
+ .reveal .controls div.navigate-up.enabled {
292
+ border-bottom-color: $linkColor;
293
+ }
294
+
295
+ .reveal .controls div.navigate-down,
296
+ .reveal .controls div.navigate-down.enabled {
297
+ border-top-color: $linkColor;
298
+ }
299
+
300
+ .reveal .controls div.navigate-left.enabled:hover {
301
+ border-right-color: $linkColorHover;
302
+ }
303
+
304
+ .reveal .controls div.navigate-right.enabled:hover {
305
+ border-left-color: $linkColorHover;
306
+ }
307
+
308
+ .reveal .controls div.navigate-up.enabled:hover {
309
+ border-bottom-color: $linkColorHover;
310
+ }
311
+
312
+ .reveal .controls div.navigate-down.enabled:hover {
313
+ border-top-color: $linkColorHover;
314
+ }
315
+
316
+
317
+ /*********************************************
318
+ * PROGRESS BAR
319
+ *********************************************/
320
+
321
+ .reveal .progress {
322
+ background: rgba(0,0,0,0.2);
323
+ }
324
+ .reveal .progress span {
325
+ background: $linkColor;
326
+
327
+ -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
328
+ -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
329
+ transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
330
+ }
331
+
332
+ /*********************************************
333
+ * SLIDE NUMBER
334
+ *********************************************/
335
+ .reveal .slide-number {
336
+ color: $linkColor;
337
+ }
338
+
339
+
@@ -0,0 +1,261 @@
1
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
2
+ /**
3
+ * White theme for reveal.js. This is the opposite of the 'black' theme.
4
+ *
5
+ * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
6
+ */
7
+ section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
8
+ color: #fff; }
9
+
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #fff;
15
+ background-color: #fff; }
16
+
17
+ .reveal {
18
+ font-family: 'Source Sans Pro', Helvetica, sans-serif;
19
+ font-size: 38px;
20
+ font-weight: normal;
21
+ color: #222; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #98bdef;
26
+ text-shadow: none; }
27
+
28
+ .reveal .slides > section, .reveal .slides > section > section {
29
+ line-height: 1.3;
30
+ font-weight: inherit; }
31
+
32
+ /*********************************************
33
+ * HEADERS
34
+ *********************************************/
35
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
36
+ margin: 0 0 20px 0;
37
+ color: #222;
38
+ font-family: 'Source Sans Pro', Helvetica, sans-serif;
39
+ font-weight: 600;
40
+ line-height: 1.2;
41
+ letter-spacing: normal;
42
+ text-transform: uppercase;
43
+ text-shadow: none;
44
+ word-wrap: break-word; }
45
+
46
+ .reveal h1 {
47
+ font-size: 2.5em; }
48
+
49
+ .reveal h2 {
50
+ font-size: 1.6em; }
51
+
52
+ .reveal h3 {
53
+ font-size: 1.3em; }
54
+
55
+ .reveal h4 {
56
+ font-size: 1em; }
57
+
58
+ .reveal h1 {
59
+ text-shadow: none; }
60
+
61
+ /*********************************************
62
+ * OTHER
63
+ *********************************************/
64
+ .reveal p {
65
+ margin: 20px 0;
66
+ line-height: 1.3; }
67
+
68
+ /* Ensure certain elements are never larger than the slide itself */
69
+ .reveal img, .reveal video, .reveal iframe {
70
+ max-width: 95%;
71
+ max-height: 95%; }
72
+
73
+ .reveal strong, .reveal b {
74
+ font-weight: bold; }
75
+
76
+ .reveal em {
77
+ font-style: italic; }
78
+
79
+ .reveal ol, .reveal dl, .reveal ul {
80
+ display: inline-block;
81
+ text-align: left;
82
+ margin: 0 0 0 1em; }
83
+
84
+ .reveal ol {
85
+ list-style-type: decimal; }
86
+
87
+ .reveal ul {
88
+ list-style-type: disc; }
89
+
90
+ .reveal ul ul {
91
+ list-style-type: square; }
92
+
93
+ .reveal ul ul ul {
94
+ list-style-type: circle; }
95
+
96
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
97
+ display: block;
98
+ margin-left: 40px; }
99
+
100
+ .reveal dt {
101
+ font-weight: bold; }
102
+
103
+ .reveal dd {
104
+ margin-left: 40px; }
105
+
106
+ .reveal q, .reveal blockquote {
107
+ quotes: none; }
108
+
109
+ .reveal blockquote {
110
+ display: block;
111
+ position: relative;
112
+ width: 70%;
113
+ margin: 20px auto;
114
+ padding: 5px;
115
+ font-style: italic;
116
+ background: rgba(255, 255, 255, 0.05);
117
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
118
+
119
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
120
+ display: inline-block; }
121
+
122
+ .reveal q {
123
+ font-style: italic; }
124
+
125
+ .reveal pre {
126
+ display: block;
127
+ position: relative;
128
+ width: 90%;
129
+ margin: 20px auto;
130
+ text-align: left;
131
+ font-size: 0.55em;
132
+ font-family: monospace;
133
+ line-height: 1.2em;
134
+ word-wrap: break-word;
135
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
136
+
137
+ .reveal code {
138
+ font-family: monospace; }
139
+
140
+ .reveal pre code {
141
+ display: block;
142
+ padding: 5px;
143
+ overflow: auto;
144
+ max-height: 400px;
145
+ word-wrap: normal;
146
+ background: #3F3F3F;
147
+ color: #DCDCDC; }
148
+
149
+ .reveal table {
150
+ margin: auto;
151
+ border-collapse: collapse;
152
+ border-spacing: 0; }
153
+
154
+ .reveal table th {
155
+ font-weight: bold; }
156
+
157
+ .reveal table th, .reveal table td {
158
+ text-align: left;
159
+ padding: 0.2em 0.5em 0.2em 0.5em;
160
+ border-bottom: 1px solid; }
161
+
162
+ .reveal table tr:last-child td {
163
+ border-bottom: none; }
164
+
165
+ .reveal sup {
166
+ vertical-align: super; }
167
+
168
+ .reveal sub {
169
+ vertical-align: sub; }
170
+
171
+ .reveal small {
172
+ display: inline-block;
173
+ font-size: 0.6em;
174
+ line-height: 1.2em;
175
+ vertical-align: top; }
176
+
177
+ .reveal small * {
178
+ vertical-align: top; }
179
+
180
+ /*********************************************
181
+ * LINKS
182
+ *********************************************/
183
+ .reveal a {
184
+ color: #2a76dd;
185
+ text-decoration: none;
186
+ -webkit-transition: color 0.15s ease;
187
+ -moz-transition: color 0.15s ease;
188
+ transition: color 0.15s ease; }
189
+
190
+ .reveal a:hover {
191
+ color: #6ca2e8;
192
+ text-shadow: none;
193
+ border: none; }
194
+
195
+ .reveal .roll span:after {
196
+ color: #fff;
197
+ background: #1a54a1; }
198
+
199
+ /*********************************************
200
+ * IMAGES
201
+ *********************************************/
202
+ .reveal section img {
203
+ margin: 15px 0px;
204
+ background: rgba(255, 255, 255, 0.12);
205
+ border: 4px solid #222;
206
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
207
+
208
+ .reveal a img {
209
+ -webkit-transition: all 0.15s linear;
210
+ -moz-transition: all 0.15s linear;
211
+ transition: all 0.15s linear; }
212
+
213
+ .reveal a:hover img {
214
+ background: rgba(255, 255, 255, 0.2);
215
+ border-color: #2a76dd;
216
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
217
+
218
+ /*********************************************
219
+ * NAVIGATION CONTROLS
220
+ *********************************************/
221
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
222
+ border-right-color: #2a76dd; }
223
+
224
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
225
+ border-left-color: #2a76dd; }
226
+
227
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
228
+ border-bottom-color: #2a76dd; }
229
+
230
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
231
+ border-top-color: #2a76dd; }
232
+
233
+ .reveal .controls div.navigate-left.enabled:hover {
234
+ border-right-color: #6ca2e8; }
235
+
236
+ .reveal .controls div.navigate-right.enabled:hover {
237
+ border-left-color: #6ca2e8; }
238
+
239
+ .reveal .controls div.navigate-up.enabled:hover {
240
+ border-bottom-color: #6ca2e8; }
241
+
242
+ .reveal .controls div.navigate-down.enabled:hover {
243
+ border-top-color: #6ca2e8; }
244
+
245
+ /*********************************************
246
+ * PROGRESS BAR
247
+ *********************************************/
248
+ .reveal .progress {
249
+ background: rgba(0, 0, 0, 0.2); }
250
+
251
+ .reveal .progress span {
252
+ background: #2a76dd;
253
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
254
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
255
+ 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: #2a76dd; }