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