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,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 Dark 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: #002b36;
19
+ background-color: #002b36; }
20
+
21
+ .reveal {
22
+ font-family: 'Lato', sans-serif;
23
+ font-size: 36px;
24
+ font-weight: normal;
25
+ color: #93a1a1; }
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: #eee8d5;
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 #93a1a1;
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; }
@@ -0,0 +1,259 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
2
+ @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
3
+ /**
4
+ * Black theme for reveal.js.
5
+ *
6
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #111;
13
+ background-color: #111; }
14
+
15
+ .reveal {
16
+ font-family: 'Open Sans', sans-serif;
17
+ font-size: 30px;
18
+ font-weight: normal;
19
+ color: #eee; }
20
+
21
+ ::selection {
22
+ color: #fff;
23
+ background: #e7ad52;
24
+ text-shadow: none; }
25
+
26
+ .reveal .slides > section, .reveal .slides > section > section {
27
+ line-height: 1.3;
28
+ font-weight: inherit; }
29
+
30
+ /*********************************************
31
+ * HEADERS
32
+ *********************************************/
33
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
34
+ margin: 0 0 20px 0;
35
+ color: #eee;
36
+ font-family: 'Montserrat', Impact, sans-serif;
37
+ font-weight: normal;
38
+ line-height: 1.2;
39
+ letter-spacing: -0.03em;
40
+ text-transform: none;
41
+ text-shadow: none;
42
+ word-wrap: break-word; }
43
+
44
+ .reveal h1 {
45
+ font-size: 3.77em; }
46
+
47
+ .reveal h2 {
48
+ font-size: 2.11em; }
49
+
50
+ .reveal h3 {
51
+ font-size: 1.55em; }
52
+
53
+ .reveal h4 {
54
+ font-size: 1em; }
55
+
56
+ .reveal h1 {
57
+ text-shadow: none; }
58
+
59
+ /*********************************************
60
+ * OTHER
61
+ *********************************************/
62
+ .reveal p {
63
+ margin: 20px 0;
64
+ line-height: 1.3; }
65
+
66
+ /* Ensure certain elements are never larger than the slide itself */
67
+ .reveal img, .reveal video, .reveal iframe {
68
+ max-width: 95%;
69
+ max-height: 95%; }
70
+
71
+ .reveal strong, .reveal b {
72
+ font-weight: bold; }
73
+
74
+ .reveal em {
75
+ font-style: italic; }
76
+
77
+ .reveal ol, .reveal dl, .reveal ul {
78
+ display: inline-block;
79
+ text-align: left;
80
+ margin: 0 0 0 1em; }
81
+
82
+ .reveal ol {
83
+ list-style-type: decimal; }
84
+
85
+ .reveal ul {
86
+ list-style-type: disc; }
87
+
88
+ .reveal ul ul {
89
+ list-style-type: square; }
90
+
91
+ .reveal ul ul ul {
92
+ list-style-type: circle; }
93
+
94
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
95
+ display: block;
96
+ margin-left: 40px; }
97
+
98
+ .reveal dt {
99
+ font-weight: bold; }
100
+
101
+ .reveal dd {
102
+ margin-left: 40px; }
103
+
104
+ .reveal q, .reveal blockquote {
105
+ quotes: none; }
106
+
107
+ .reveal blockquote {
108
+ display: block;
109
+ position: relative;
110
+ width: 70%;
111
+ margin: 20px auto;
112
+ padding: 5px;
113
+ font-style: italic;
114
+ background: rgba(255, 255, 255, 0.05);
115
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
116
+
117
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
118
+ display: inline-block; }
119
+
120
+ .reveal q {
121
+ font-style: italic; }
122
+
123
+ .reveal pre {
124
+ display: block;
125
+ position: relative;
126
+ width: 90%;
127
+ margin: 20px auto;
128
+ text-align: left;
129
+ font-size: 0.55em;
130
+ font-family: monospace;
131
+ line-height: 1.2em;
132
+ word-wrap: break-word;
133
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
134
+
135
+ .reveal code {
136
+ font-family: monospace; }
137
+
138
+ .reveal pre code {
139
+ display: block;
140
+ padding: 5px;
141
+ overflow: auto;
142
+ max-height: 400px;
143
+ word-wrap: normal;
144
+ background: #3F3F3F;
145
+ color: #DCDCDC; }
146
+
147
+ .reveal table {
148
+ margin: auto;
149
+ border-collapse: collapse;
150
+ border-spacing: 0; }
151
+
152
+ .reveal table th {
153
+ font-weight: bold; }
154
+
155
+ .reveal table th, .reveal table td {
156
+ text-align: left;
157
+ padding: 0.2em 0.5em 0.2em 0.5em;
158
+ border-bottom: 1px solid; }
159
+
160
+ .reveal table tr:last-child td {
161
+ border-bottom: none; }
162
+
163
+ .reveal sup {
164
+ vertical-align: super; }
165
+
166
+ .reveal sub {
167
+ vertical-align: sub; }
168
+
169
+ .reveal small {
170
+ display: inline-block;
171
+ font-size: 0.6em;
172
+ line-height: 1.2em;
173
+ vertical-align: top; }
174
+
175
+ .reveal small * {
176
+ vertical-align: top; }
177
+
178
+ /*********************************************
179
+ * LINKS
180
+ *********************************************/
181
+ .reveal a {
182
+ color: #e7ad52;
183
+ text-decoration: none;
184
+ -webkit-transition: color 0.15s ease;
185
+ -moz-transition: color 0.15s ease;
186
+ transition: color 0.15s ease; }
187
+
188
+ .reveal a:hover {
189
+ color: #f3d7ac;
190
+ text-shadow: none;
191
+ border: none; }
192
+
193
+ .reveal .roll span:after {
194
+ color: #fff;
195
+ background: #d0881d; }
196
+
197
+ /*********************************************
198
+ * IMAGES
199
+ *********************************************/
200
+ .reveal section img {
201
+ margin: 15px 0px;
202
+ background: rgba(255, 255, 255, 0.12);
203
+ border: 4px solid #eee;
204
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
205
+
206
+ .reveal a img {
207
+ -webkit-transition: all 0.15s linear;
208
+ -moz-transition: all 0.15s linear;
209
+ transition: all 0.15s linear; }
210
+
211
+ .reveal a:hover img {
212
+ background: rgba(255, 255, 255, 0.2);
213
+ border-color: #e7ad52;
214
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
215
+
216
+ /*********************************************
217
+ * NAVIGATION CONTROLS
218
+ *********************************************/
219
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
220
+ border-right-color: #e7ad52; }
221
+
222
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
223
+ border-left-color: #e7ad52; }
224
+
225
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
226
+ border-bottom-color: #e7ad52; }
227
+
228
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
229
+ border-top-color: #e7ad52; }
230
+
231
+ .reveal .controls div.navigate-left.enabled:hover {
232
+ border-right-color: #f3d7ac; }
233
+
234
+ .reveal .controls div.navigate-right.enabled:hover {
235
+ border-left-color: #f3d7ac; }
236
+
237
+ .reveal .controls div.navigate-up.enabled:hover {
238
+ border-bottom-color: #f3d7ac; }
239
+
240
+ .reveal .controls div.navigate-down.enabled:hover {
241
+ border-top-color: #f3d7ac; }
242
+
243
+ /*********************************************
244
+ * PROGRESS BAR
245
+ *********************************************/
246
+ .reveal .progress {
247
+ background: rgba(0, 0, 0, 0.2); }
248
+
249
+ .reveal .progress span {
250
+ background: #e7ad52;
251
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
252
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
253
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
254
+
255
+ /*********************************************
256
+ * SLIDE NUMBER
257
+ *********************************************/
258
+ .reveal .slide-number {
259
+ color: #e7ad52; }