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,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; }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Beige theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+
15
+ // Include theme-specific fonts
16
+ @import url(../../lib/font/league-gothic/league-gothic.css);
17
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
18
+
19
+
20
+ // Override theme settings (see ../template/settings.scss)
21
+ $mainColor: #333;
22
+ $headingColor: #333;
23
+ $headingTextShadow: none;
24
+ $backgroundColor: #f7f3de;
25
+ $linkColor: #8b743d;
26
+ $linkColorHover: lighten( $linkColor, 20% );
27
+ $selectionBackgroundColor: rgba(79, 64, 28, 0.99);
28
+ $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
29
+
30
+ // Background generator
31
+ @mixin bodyBackground() {
32
+ @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );
33
+ }
34
+
35
+
36
+
37
+ // Theme template ------------------------------
38
+ @import "../template/theme";
39
+ // ---------------------------------------------
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Black theme for reveal.js. This is the opposite of the 'white' theme.
3
+ *
4
+ * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+ // Include theme-specific fonts
15
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
16
+
17
+
18
+ // Override theme settings (see ../template/settings.scss)
19
+ $backgroundColor: #222;
20
+
21
+ $mainColor: #fff;
22
+ $headingColor: #fff;
23
+
24
+ $mainFontSize: 38px;
25
+ $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26
+ $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27
+ $headingTextShadow: none;
28
+ $headingLetterSpacing: normal;
29
+ $headingTextTransform: uppercase;
30
+ $headingFontWeight: 600;
31
+ $linkColor: #42affa;
32
+ $linkColorHover: lighten( $linkColor, 15% );
33
+ $selectionBackgroundColor: lighten( $linkColor, 25% );
34
+
35
+ $heading1Size: 2.5em;
36
+ $heading2Size: 1.6em;
37
+ $heading3Size: 1.3em;
38
+ $heading4Size: 1.0em;
39
+
40
+ section.has-light-background {
41
+ &, h1, h2, h3, h4, h5, h6 {
42
+ color: #222;
43
+ }
44
+ }
45
+
46
+
47
+ // Theme template ------------------------------
48
+ @import "../template/theme";
49
+ // ---------------------------------------------
@@ -0,0 +1,91 @@
1
+ /**
2
+ * Blood theme for reveal.js
3
+ * Author: Walther http://github.com/Walther
4
+ *
5
+ * Designed to be used with highlight.js theme
6
+ * "monokai_sublime.css" available from
7
+ * https://github.com/isagalaev/highlight.js/
8
+ *
9
+ * For other themes, change $codeBackground accordingly.
10
+ *
11
+ */
12
+
13
+ // Default mixins and settings -----------------
14
+ @import "../template/mixins";
15
+ @import "../template/settings";
16
+ // ---------------------------------------------
17
+
18
+ // Include theme-specific fonts
19
+
20
+ @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
21
+
22
+ // Colors used in the theme
23
+ $blood: #a23;
24
+ $coal: #222;
25
+ $codeBackground: #23241f;
26
+
27
+ // Main text
28
+ $mainFont: Ubuntu, 'sans-serif';
29
+ $mainFontSize: 36px;
30
+ $mainColor: #eee;
31
+
32
+ // Headings
33
+ $headingFont: Ubuntu, 'sans-serif';
34
+ $headingTextShadow: 2px 2px 2px $coal;
35
+
36
+ // h1 shadow, borrowed humbly from
37
+ // (c) Default theme by Hakim El Hattab
38
+ $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
39
+
40
+ // Links
41
+ $linkColor: $blood;
42
+ $linkColorHover: lighten( $linkColor, 20% );
43
+
44
+ // Text selection
45
+ $selectionBackgroundColor: $blood;
46
+ $selectionColor: #fff;
47
+
48
+ // Background generator
49
+ @mixin bodyBackground() {
50
+ @include radial-gradient( $coal, lighten( $coal, 25% ) );
51
+ }
52
+
53
+ // Theme template ------------------------------
54
+ @import "../template/theme";
55
+ // ---------------------------------------------
56
+
57
+ // some overrides after theme template import
58
+
59
+ .reveal p {
60
+ font-weight: 300;
61
+ text-shadow: 1px 1px $coal;
62
+ }
63
+
64
+ .reveal h1,
65
+ .reveal h2,
66
+ .reveal h3,
67
+ .reveal h4,
68
+ .reveal h5,
69
+ .reveal h6 {
70
+ font-weight: 700;
71
+ }
72
+
73
+ .reveal a,
74
+ .reveal a:hover {
75
+ text-shadow: 2px 2px 2px #000;
76
+ }
77
+
78
+ .reveal small a,
79
+ .reveal small a:hover {
80
+ text-shadow: 1px 1px 1px #000;
81
+ }
82
+
83
+ .reveal p code {
84
+ background-color: $codeBackground;
85
+ display: inline-block;
86
+ border-radius: 7px;
87
+ }
88
+
89
+ .reveal small code {
90
+ vertical-align: baseline;
91
+ }