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,261 @@
1
+ /**
2
+ * A simple theme for reveal.js presentations, similar
3
+ * to the default theme. The accent color is brown.
4
+ *
5
+ * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
6
+ */
7
+ .reveal a {
8
+ line-height: 1.3em; }
9
+
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #F0F1EB;
15
+ background-color: #F0F1EB; }
16
+
17
+ .reveal {
18
+ font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
19
+ font-size: 36px;
20
+ font-weight: normal;
21
+ color: #000; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #26351C;
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: #383D3D;
38
+ font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
39
+ font-weight: normal;
40
+ line-height: 1.2;
41
+ letter-spacing: normal;
42
+ text-transform: none;
43
+ text-shadow: none;
44
+ word-wrap: break-word; }
45
+
46
+ .reveal h1 {
47
+ font-size: 3.77em; }
48
+
49
+ .reveal h2 {
50
+ font-size: 2.11em; }
51
+
52
+ .reveal h3 {
53
+ font-size: 1.55em; }
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: #51483D;
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: #8b7b69;
192
+ text-shadow: none;
193
+ border: none; }
194
+
195
+ .reveal .roll span:after {
196
+ color: #fff;
197
+ background: #25211c; }
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 #000;
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: #51483D;
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: #51483D; }
223
+
224
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
225
+ border-left-color: #51483D; }
226
+
227
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
228
+ border-bottom-color: #51483D; }
229
+
230
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
231
+ border-top-color: #51483D; }
232
+
233
+ .reveal .controls div.navigate-left.enabled:hover {
234
+ border-right-color: #8b7b69; }
235
+
236
+ .reveal .controls div.navigate-right.enabled:hover {
237
+ border-left-color: #8b7b69; }
238
+
239
+ .reveal .controls div.navigate-up.enabled:hover {
240
+ border-bottom-color: #8b7b69; }
241
+
242
+ .reveal .controls div.navigate-down.enabled:hover {
243
+ border-top-color: #8b7b69; }
244
+
245
+ /*********************************************
246
+ * PROGRESS BAR
247
+ *********************************************/
248
+ .reveal .progress {
249
+ background: rgba(0, 0, 0, 0.2); }
250
+
251
+ .reveal .progress span {
252
+ background: #51483D;
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: #51483D; }
@@ -0,0 +1,261 @@
1
+ @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
2
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
3
+ /**
4
+ * A simple theme for reveal.js presentations, similar
5
+ * to the default theme. The accent color is darkblue.
6
+ *
7
+ * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
8
+ * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
9
+ */
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #fff;
15
+ background-color: #fff; }
16
+
17
+ .reveal {
18
+ font-family: 'Lato', sans-serif;
19
+ font-size: 36px;
20
+ font-weight: normal;
21
+ color: #000; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: rgba(0, 0, 0, 0.99);
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: #000;
38
+ font-family: 'News Cycle', Impact, sans-serif;
39
+ font-weight: normal;
40
+ line-height: 1.2;
41
+ letter-spacing: normal;
42
+ text-transform: none;
43
+ text-shadow: none;
44
+ word-wrap: break-word; }
45
+
46
+ .reveal h1 {
47
+ font-size: 3.77em; }
48
+
49
+ .reveal h2 {
50
+ font-size: 2.11em; }
51
+
52
+ .reveal h3 {
53
+ font-size: 1.55em; }
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: #00008B;
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: #0000f1;
192
+ text-shadow: none;
193
+ border: none; }
194
+
195
+ .reveal .roll span:after {
196
+ color: #fff;
197
+ background: #00003f; }
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 #000;
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: #00008B;
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: #00008B; }
223
+
224
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
225
+ border-left-color: #00008B; }
226
+
227
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
228
+ border-bottom-color: #00008B; }
229
+
230
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
231
+ border-top-color: #00008B; }
232
+
233
+ .reveal .controls div.navigate-left.enabled:hover {
234
+ border-right-color: #0000f1; }
235
+
236
+ .reveal .controls div.navigate-right.enabled:hover {
237
+ border-left-color: #0000f1; }
238
+
239
+ .reveal .controls div.navigate-up.enabled:hover {
240
+ border-bottom-color: #0000f1; }
241
+
242
+ .reveal .controls div.navigate-down.enabled:hover {
243
+ border-top-color: #0000f1; }
244
+
245
+ /*********************************************
246
+ * PROGRESS BAR
247
+ *********************************************/
248
+ .reveal .progress {
249
+ background: rgba(0, 0, 0, 0.2); }
250
+
251
+ .reveal .progress span {
252
+ background: #00008B;
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: #00008B; }