reveal-jekyll 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +94 -0
  4. data/_includes/basements.html +7 -0
  5. data/_includes/head.html +39 -0
  6. data/_includes/reveal.html +25 -0
  7. data/_layouts/presentation.html +26 -0
  8. data/_layouts/raw.html +20 -0
  9. data/assets/css/print/paper.css +203 -0
  10. data/assets/css/print/pdf.css +164 -0
  11. data/assets/css/reset.css +30 -0
  12. data/assets/css/reveal.css +1598 -0
  13. data/assets/css/reveal.scss +1768 -0
  14. data/assets/css/rouge-highlight/monokai.css +210 -0
  15. data/assets/css/theme/README.md +21 -0
  16. data/assets/css/theme/beige.css +277 -0
  17. data/assets/css/theme/black.css +273 -0
  18. data/assets/css/theme/blood.css +296 -0
  19. data/assets/css/theme/league.css +279 -0
  20. data/assets/css/theme/moon.css +277 -0
  21. data/assets/css/theme/night.css +271 -0
  22. data/assets/css/theme/serif.css +273 -0
  23. data/assets/css/theme/simple.css +276 -0
  24. data/assets/css/theme/sky.css +280 -0
  25. data/assets/css/theme/solarized.css +277 -0
  26. data/assets/css/theme/source/beige.scss +39 -0
  27. data/assets/css/theme/source/black.scss +49 -0
  28. data/assets/css/theme/source/blood.scss +78 -0
  29. data/assets/css/theme/source/league.scss +34 -0
  30. data/assets/css/theme/source/moon.scss +57 -0
  31. data/assets/css/theme/source/night.scss +34 -0
  32. data/assets/css/theme/source/serif.scss +35 -0
  33. data/assets/css/theme/source/simple.scss +43 -0
  34. data/assets/css/theme/source/sky.scss +46 -0
  35. data/assets/css/theme/source/solarized.scss +63 -0
  36. data/assets/css/theme/source/white.scss +49 -0
  37. data/assets/css/theme/template/mixins.scss +29 -0
  38. data/assets/css/theme/template/settings.scss +45 -0
  39. data/assets/css/theme/template/theme.scss +325 -0
  40. data/assets/css/theme/white.css +273 -0
  41. data/assets/js/reveal.js +6028 -0
  42. data/assets/lib/css/monokai.css +71 -0
  43. data/assets/lib/css/zenburn.css +80 -0
  44. data/assets/lib/font/Pacifico/Pacifico.eot +0 -0
  45. data/assets/lib/font/Pacifico/Pacifico.svg +10833 -0
  46. data/assets/lib/font/Pacifico/Pacifico.ttf +0 -0
  47. data/assets/lib/font/Pacifico/Pacifico.woff +0 -0
  48. data/assets/lib/font/Pacifico/Pacifico.woff2 +0 -0
  49. data/assets/lib/font/Pacifico/original-pacifico-regular.ttf +0 -0
  50. data/assets/lib/font/fontawesome/FontAwesome.otf +0 -0
  51. data/assets/lib/font/fontawesome/fontawesome-webfont.eot +0 -0
  52. data/assets/lib/font/fontawesome/fontawesome-webfont.svg +2671 -0
  53. data/assets/lib/font/fontawesome/fontawesome-webfont.ttf +0 -0
  54. data/assets/lib/font/fontawesome/fontawesome-webfont.woff +0 -0
  55. data/assets/lib/font/fontawesome/fontawesome-webfont.woff2 +0 -0
  56. data/assets/lib/font/league-gothic/LICENSE +2 -0
  57. data/assets/lib/font/league-gothic/league-gothic.css +10 -0
  58. data/assets/lib/font/league-gothic/league-gothic.eot +0 -0
  59. data/assets/lib/font/league-gothic/league-gothic.ttf +0 -0
  60. data/assets/lib/font/league-gothic/league-gothic.woff +0 -0
  61. data/assets/lib/font/source-sans-pro/LICENSE +45 -0
  62. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  63. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  64. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  65. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  66. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  67. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  68. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  69. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  70. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  71. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  72. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  73. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  74. data/assets/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  75. data/assets/lib/js/html5shiv.js +7 -0
  76. data/assets/lib/js/promise.js +2 -0
  77. data/assets/plugin/highlight/highlight.js +168 -0
  78. data/assets/plugin/markdown/example.html +134 -0
  79. data/assets/plugin/markdown/example.md +36 -0
  80. data/assets/plugin/markdown/markdown.js +446 -0
  81. data/assets/plugin/markdown/marked.js +6 -0
  82. data/assets/plugin/math/math.js +92 -0
  83. data/assets/plugin/multiplex/client.js +13 -0
  84. data/assets/plugin/multiplex/index.js +64 -0
  85. data/assets/plugin/multiplex/master.js +34 -0
  86. data/assets/plugin/multiplex/package.json +19 -0
  87. data/assets/plugin/notes-server/client.js +65 -0
  88. data/assets/plugin/notes-server/index.js +69 -0
  89. data/assets/plugin/notes-server/notes.html +585 -0
  90. data/assets/plugin/notes/notes.html +834 -0
  91. data/assets/plugin/notes/notes.js +178 -0
  92. data/assets/plugin/print-pdf/print-pdf.js +67 -0
  93. data/assets/plugin/search/search.js +206 -0
  94. data/assets/plugin/zoom-js/zoom.js +277 -0
  95. metadata +180 -0
@@ -0,0 +1,276 @@
1
+ /**
2
+ * A simple theme for reveal.js presentations, similar
3
+ * to the default theme. The accent color is darkblue.
4
+ *
5
+ * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6
+ * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
9
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
10
+ 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 {
11
+ color: #fff; }
12
+
13
+ /*********************************************
14
+ * GLOBAL STYLES
15
+ *********************************************/
16
+ body {
17
+ background: #fff;
18
+ background-color: #fff; }
19
+
20
+ .reveal {
21
+ font-family: "Lato", sans-serif;
22
+ font-size: 40px;
23
+ font-weight: normal;
24
+ color: #000; }
25
+
26
+ ::selection {
27
+ color: #fff;
28
+ background: rgba(0, 0, 0, 0.99);
29
+ text-shadow: none; }
30
+
31
+ ::-moz-selection {
32
+ color: #fff;
33
+ background: rgba(0, 0, 0, 0.99);
34
+ text-shadow: none; }
35
+
36
+ .reveal .slides section,
37
+ .reveal .slides section > section {
38
+ line-height: 1.3;
39
+ font-weight: inherit; }
40
+
41
+ /*********************************************
42
+ * HEADERS
43
+ *********************************************/
44
+ .reveal h1,
45
+ .reveal h2,
46
+ .reveal h3,
47
+ .reveal h4,
48
+ .reveal h5,
49
+ .reveal h6 {
50
+ margin: 0 0 20px 0;
51
+ color: #000;
52
+ font-family: "News Cycle", Impact, sans-serif;
53
+ font-weight: normal;
54
+ line-height: 1.2;
55
+ letter-spacing: normal;
56
+ text-transform: none;
57
+ text-shadow: none;
58
+ word-wrap: break-word; }
59
+
60
+ .reveal h1 {
61
+ font-size: 3.77em; }
62
+
63
+ .reveal h2 {
64
+ font-size: 2.11em; }
65
+
66
+ .reveal h3 {
67
+ font-size: 1.55em; }
68
+
69
+ .reveal h4 {
70
+ font-size: 1em; }
71
+
72
+ .reveal h1 {
73
+ text-shadow: none; }
74
+
75
+ /*********************************************
76
+ * OTHER
77
+ *********************************************/
78
+ .reveal p {
79
+ margin: 20px 0;
80
+ line-height: 1.3; }
81
+
82
+ /* Ensure certain elements are never larger than the slide itself */
83
+ .reveal img,
84
+ .reveal video,
85
+ .reveal iframe {
86
+ max-width: 95%;
87
+ max-height: 95%; }
88
+
89
+ .reveal strong,
90
+ .reveal b {
91
+ font-weight: bold; }
92
+
93
+ .reveal em {
94
+ font-style: italic; }
95
+
96
+ .reveal ol,
97
+ .reveal dl,
98
+ .reveal ul {
99
+ display: inline-block;
100
+ text-align: left;
101
+ margin: 0 0 0 1em; }
102
+
103
+ .reveal ol {
104
+ list-style-type: decimal; }
105
+
106
+ .reveal ul {
107
+ list-style-type: disc; }
108
+
109
+ .reveal ul ul {
110
+ list-style-type: square; }
111
+
112
+ .reveal ul ul ul {
113
+ list-style-type: circle; }
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
+ .reveal dt {
123
+ font-weight: bold; }
124
+
125
+ .reveal dd {
126
+ margin-left: 40px; }
127
+
128
+ .reveal blockquote {
129
+ display: block;
130
+ position: relative;
131
+ width: 70%;
132
+ margin: 20px auto;
133
+ padding: 5px;
134
+ font-style: italic;
135
+ background: rgba(255, 255, 255, 0.05);
136
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
137
+
138
+ .reveal blockquote p:first-child,
139
+ .reveal blockquote p:last-child {
140
+ display: inline-block; }
141
+
142
+ .reveal q {
143
+ font-style: italic; }
144
+
145
+ .reveal pre {
146
+ display: block;
147
+ position: relative;
148
+ width: 90%;
149
+ margin: 20px auto;
150
+ text-align: left;
151
+ font-size: 0.55em;
152
+ font-family: monospace;
153
+ line-height: 1.2em;
154
+ word-wrap: break-word;
155
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
156
+
157
+ .reveal code {
158
+ font-family: monospace;
159
+ text-transform: none; }
160
+
161
+ .reveal pre code {
162
+ display: block;
163
+ padding: 5px;
164
+ overflow: auto;
165
+ max-height: 400px;
166
+ word-wrap: normal; }
167
+
168
+ .reveal table {
169
+ margin: auto;
170
+ border-collapse: collapse;
171
+ border-spacing: 0; }
172
+
173
+ .reveal table th {
174
+ font-weight: bold; }
175
+
176
+ .reveal table th,
177
+ .reveal table td {
178
+ text-align: left;
179
+ padding: 0.2em 0.5em 0.2em 0.5em;
180
+ border-bottom: 1px solid; }
181
+
182
+ .reveal table th[align="center"],
183
+ .reveal table td[align="center"] {
184
+ text-align: center; }
185
+
186
+ .reveal table th[align="right"],
187
+ .reveal table td[align="right"] {
188
+ text-align: right; }
189
+
190
+ .reveal table tbody tr:last-child th,
191
+ .reveal table tbody tr:last-child td {
192
+ border-bottom: none; }
193
+
194
+ .reveal sup {
195
+ vertical-align: super;
196
+ font-size: smaller; }
197
+
198
+ .reveal sub {
199
+ vertical-align: sub;
200
+ font-size: smaller; }
201
+
202
+ .reveal small {
203
+ display: inline-block;
204
+ font-size: 0.6em;
205
+ line-height: 1.2em;
206
+ vertical-align: top; }
207
+
208
+ .reveal small * {
209
+ vertical-align: top; }
210
+
211
+ /*********************************************
212
+ * LINKS
213
+ *********************************************/
214
+ .reveal a {
215
+ color: #00008B;
216
+ text-decoration: none;
217
+ -webkit-transition: color .15s ease;
218
+ -moz-transition: color .15s ease;
219
+ transition: color .15s ease; }
220
+
221
+ .reveal a:hover {
222
+ color: #0000f1;
223
+ text-shadow: none;
224
+ border: none; }
225
+
226
+ .reveal .roll span:after {
227
+ color: #fff;
228
+ background: #00003f; }
229
+
230
+ /*********************************************
231
+ * IMAGES
232
+ *********************************************/
233
+ .reveal section img {
234
+ margin: 15px 0px;
235
+ background: rgba(255, 255, 255, 0.12);
236
+ border: 4px solid #000;
237
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
238
+
239
+ .reveal section img.plain {
240
+ border: 0;
241
+ box-shadow: none; }
242
+
243
+ .reveal a img {
244
+ -webkit-transition: all .15s linear;
245
+ -moz-transition: all .15s linear;
246
+ transition: all .15s linear; }
247
+
248
+ .reveal a:hover img {
249
+ background: rgba(255, 255, 255, 0.2);
250
+ border-color: #00008B;
251
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
252
+
253
+ /*********************************************
254
+ * NAVIGATION CONTROLS
255
+ *********************************************/
256
+ .reveal .controls {
257
+ color: #00008B; }
258
+
259
+ /*********************************************
260
+ * PROGRESS BAR
261
+ *********************************************/
262
+ .reveal .progress {
263
+ background: rgba(0, 0, 0, 0.2);
264
+ color: #00008B; }
265
+
266
+ .reveal .progress span {
267
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
268
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
269
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
270
+
271
+ /*********************************************
272
+ * PRINT BACKGROUND
273
+ *********************************************/
274
+ @media print {
275
+ .backgrounds {
276
+ background-color: #fff; } }
@@ -0,0 +1,280 @@
1
+ /**
2
+ * Sky theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
7
+ @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
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: 40px;
27
+ font-weight: normal;
28
+ color: #333; }
29
+
30
+ ::selection {
31
+ color: #fff;
32
+ background: #134674;
33
+ text-shadow: none; }
34
+
35
+ ::-moz-selection {
36
+ color: #fff;
37
+ background: #134674;
38
+ text-shadow: none; }
39
+
40
+ .reveal .slides section,
41
+ .reveal .slides section > section {
42
+ line-height: 1.3;
43
+ font-weight: inherit; }
44
+
45
+ /*********************************************
46
+ * HEADERS
47
+ *********************************************/
48
+ .reveal h1,
49
+ .reveal h2,
50
+ .reveal h3,
51
+ .reveal h4,
52
+ .reveal h5,
53
+ .reveal h6 {
54
+ margin: 0 0 20px 0;
55
+ color: #333;
56
+ font-family: "Quicksand", sans-serif;
57
+ font-weight: normal;
58
+ line-height: 1.2;
59
+ letter-spacing: -0.08em;
60
+ text-transform: uppercase;
61
+ text-shadow: none;
62
+ word-wrap: break-word; }
63
+
64
+ .reveal h1 {
65
+ font-size: 3.77em; }
66
+
67
+ .reveal h2 {
68
+ font-size: 2.11em; }
69
+
70
+ .reveal h3 {
71
+ font-size: 1.55em; }
72
+
73
+ .reveal h4 {
74
+ font-size: 1em; }
75
+
76
+ .reveal h1 {
77
+ text-shadow: none; }
78
+
79
+ /*********************************************
80
+ * OTHER
81
+ *********************************************/
82
+ .reveal p {
83
+ margin: 20px 0;
84
+ line-height: 1.3; }
85
+
86
+ /* Ensure certain elements are never larger than the slide itself */
87
+ .reveal img,
88
+ .reveal video,
89
+ .reveal iframe {
90
+ max-width: 95%;
91
+ max-height: 95%; }
92
+
93
+ .reveal strong,
94
+ .reveal b {
95
+ font-weight: bold; }
96
+
97
+ .reveal em {
98
+ font-style: italic; }
99
+
100
+ .reveal ol,
101
+ .reveal dl,
102
+ .reveal ul {
103
+ display: inline-block;
104
+ text-align: left;
105
+ margin: 0 0 0 1em; }
106
+
107
+ .reveal ol {
108
+ list-style-type: decimal; }
109
+
110
+ .reveal ul {
111
+ list-style-type: disc; }
112
+
113
+ .reveal ul ul {
114
+ list-style-type: square; }
115
+
116
+ .reveal ul ul ul {
117
+ list-style-type: circle; }
118
+
119
+ .reveal ul ul,
120
+ .reveal ul ol,
121
+ .reveal ol ol,
122
+ .reveal ol ul {
123
+ display: block;
124
+ margin-left: 40px; }
125
+
126
+ .reveal dt {
127
+ font-weight: bold; }
128
+
129
+ .reveal dd {
130
+ margin-left: 40px; }
131
+
132
+ .reveal blockquote {
133
+ display: block;
134
+ position: relative;
135
+ width: 70%;
136
+ margin: 20px auto;
137
+ padding: 5px;
138
+ font-style: italic;
139
+ background: rgba(255, 255, 255, 0.05);
140
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
141
+
142
+ .reveal blockquote p:first-child,
143
+ .reveal blockquote p:last-child {
144
+ display: inline-block; }
145
+
146
+ .reveal q {
147
+ font-style: italic; }
148
+
149
+ .reveal pre {
150
+ display: block;
151
+ position: relative;
152
+ width: 90%;
153
+ margin: 20px auto;
154
+ text-align: left;
155
+ font-size: 0.55em;
156
+ font-family: monospace;
157
+ line-height: 1.2em;
158
+ word-wrap: break-word;
159
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
160
+
161
+ .reveal code {
162
+ font-family: monospace;
163
+ text-transform: none; }
164
+
165
+ .reveal pre code {
166
+ display: block;
167
+ padding: 5px;
168
+ overflow: auto;
169
+ max-height: 400px;
170
+ word-wrap: normal; }
171
+
172
+ .reveal table {
173
+ margin: auto;
174
+ border-collapse: collapse;
175
+ border-spacing: 0; }
176
+
177
+ .reveal table th {
178
+ font-weight: bold; }
179
+
180
+ .reveal table th,
181
+ .reveal table td {
182
+ text-align: left;
183
+ padding: 0.2em 0.5em 0.2em 0.5em;
184
+ border-bottom: 1px solid; }
185
+
186
+ .reveal table th[align="center"],
187
+ .reveal table td[align="center"] {
188
+ text-align: center; }
189
+
190
+ .reveal table th[align="right"],
191
+ .reveal table td[align="right"] {
192
+ text-align: right; }
193
+
194
+ .reveal table tbody tr:last-child th,
195
+ .reveal table tbody tr:last-child td {
196
+ border-bottom: none; }
197
+
198
+ .reveal sup {
199
+ vertical-align: super;
200
+ font-size: smaller; }
201
+
202
+ .reveal sub {
203
+ vertical-align: sub;
204
+ font-size: smaller; }
205
+
206
+ .reveal small {
207
+ display: inline-block;
208
+ font-size: 0.6em;
209
+ line-height: 1.2em;
210
+ vertical-align: top; }
211
+
212
+ .reveal small * {
213
+ vertical-align: top; }
214
+
215
+ /*********************************************
216
+ * LINKS
217
+ *********************************************/
218
+ .reveal a {
219
+ color: #3b759e;
220
+ text-decoration: none;
221
+ -webkit-transition: color .15s ease;
222
+ -moz-transition: color .15s ease;
223
+ transition: color .15s ease; }
224
+
225
+ .reveal a:hover {
226
+ color: #74a7cb;
227
+ text-shadow: none;
228
+ border: none; }
229
+
230
+ .reveal .roll span:after {
231
+ color: #fff;
232
+ background: #264c66; }
233
+
234
+ /*********************************************
235
+ * IMAGES
236
+ *********************************************/
237
+ .reveal section img {
238
+ margin: 15px 0px;
239
+ background: rgba(255, 255, 255, 0.12);
240
+ border: 4px solid #333;
241
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
242
+
243
+ .reveal section img.plain {
244
+ border: 0;
245
+ box-shadow: none; }
246
+
247
+ .reveal a img {
248
+ -webkit-transition: all .15s linear;
249
+ -moz-transition: all .15s linear;
250
+ transition: all .15s linear; }
251
+
252
+ .reveal a:hover img {
253
+ background: rgba(255, 255, 255, 0.2);
254
+ border-color: #3b759e;
255
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
256
+
257
+ /*********************************************
258
+ * NAVIGATION CONTROLS
259
+ *********************************************/
260
+ .reveal .controls {
261
+ color: #3b759e; }
262
+
263
+ /*********************************************
264
+ * PROGRESS BAR
265
+ *********************************************/
266
+ .reveal .progress {
267
+ background: rgba(0, 0, 0, 0.2);
268
+ color: #3b759e; }
269
+
270
+ .reveal .progress span {
271
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
272
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
273
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
274
+
275
+ /*********************************************
276
+ * PRINT BACKGROUND
277
+ *********************************************/
278
+ @media print {
279
+ .backgrounds {
280
+ background-color: #f7fbfc; } }