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,210 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
4
+ color: #75715e;
5
+ font-style: italic;
6
+ }
7
+ .highlight .cm {
8
+ color: #75715e;
9
+ font-style: italic;
10
+ }
11
+ .highlight .c1 {
12
+ color: #75715e;
13
+ font-style: italic;
14
+ }
15
+ .highlight .cp {
16
+ color: #75715e;
17
+ font-weight: bold;
18
+ }
19
+ .highlight .cs {
20
+ color: #75715e;
21
+ font-weight: bold;
22
+ font-style: italic;
23
+ }
24
+ .highlight .err {
25
+ color: #960050;
26
+ background-color: #1e0010;
27
+ }
28
+ .highlight .gi {
29
+ color: #ffffff;
30
+ background-color: #324932;
31
+ }
32
+ .highlight .gd {
33
+ color: #ffffff;
34
+ background-color: #493131;
35
+ }
36
+ .highlight .ge {
37
+ color: #000000;
38
+ font-style: italic;
39
+ }
40
+ .highlight .gr {
41
+ color: #aa0000;
42
+ }
43
+ .highlight .gt {
44
+ color: #aa0000;
45
+ }
46
+ .highlight .gh {
47
+ color: #999999;
48
+ }
49
+ .highlight .go {
50
+ color: #888888;
51
+ }
52
+ .highlight .gp {
53
+ color: #555555;
54
+ }
55
+ .highlight .gs {
56
+ font-weight: bold;
57
+ }
58
+ .highlight .gu {
59
+ color: #aaaaaa;
60
+ }
61
+ .highlight .k, .highlight .kv {
62
+ color: #66d9ef;
63
+ font-weight: bold;
64
+ }
65
+ .highlight .kc {
66
+ color: #66d9ef;
67
+ font-weight: bold;
68
+ }
69
+ .highlight .kd {
70
+ color: #66d9ef;
71
+ font-weight: bold;
72
+ }
73
+ .highlight .kp {
74
+ color: #66d9ef;
75
+ font-weight: bold;
76
+ }
77
+ .highlight .kr {
78
+ color: #66d9ef;
79
+ font-weight: bold;
80
+ }
81
+ .highlight .kt {
82
+ color: #66d9ef;
83
+ font-weight: bold;
84
+ }
85
+ .highlight .kn {
86
+ color: #f92672;
87
+ font-weight: bold;
88
+ }
89
+ .highlight .ow {
90
+ color: #f92672;
91
+ font-weight: bold;
92
+ }
93
+ .highlight .o {
94
+ color: #f92672;
95
+ font-weight: bold;
96
+ }
97
+ .highlight .mf {
98
+ color: #ae81ff;
99
+ }
100
+ .highlight .mh {
101
+ color: #ae81ff;
102
+ }
103
+ .highlight .il {
104
+ color: #ae81ff;
105
+ }
106
+ .highlight .mi {
107
+ color: #ae81ff;
108
+ }
109
+ .highlight .mo {
110
+ color: #ae81ff;
111
+ }
112
+ .highlight .m, .highlight .mb, .highlight .mx {
113
+ color: #ae81ff;
114
+ }
115
+ .highlight .se {
116
+ color: #ae81ff;
117
+ }
118
+ .highlight .sb {
119
+ color: #e6db74;
120
+ }
121
+ .highlight .sc {
122
+ color: #e6db74;
123
+ }
124
+ .highlight .sd {
125
+ color: #e6db74;
126
+ }
127
+ .highlight .s2 {
128
+ color: #e6db74;
129
+ }
130
+ .highlight .sh {
131
+ color: #e6db74;
132
+ }
133
+ .highlight .si {
134
+ color: #e6db74;
135
+ }
136
+ .highlight .sx {
137
+ color: #e6db74;
138
+ }
139
+ .highlight .sr {
140
+ color: #e6db74;
141
+ }
142
+ .highlight .s1 {
143
+ color: #e6db74;
144
+ }
145
+ .highlight .ss {
146
+ color: #e6db74;
147
+ }
148
+ .highlight .s, .highlight .sa, .highlight .dl {
149
+ color: #e6db74;
150
+ }
151
+ .highlight .na {
152
+ color: #a6e22e;
153
+ }
154
+ .highlight .nc {
155
+ color: #a6e22e;
156
+ font-weight: bold;
157
+ }
158
+ .highlight .nd {
159
+ color: #a6e22e;
160
+ font-weight: bold;
161
+ }
162
+ .highlight .ne {
163
+ color: #a6e22e;
164
+ font-weight: bold;
165
+ }
166
+ .highlight .nf, .highlight .fm {
167
+ color: #a6e22e;
168
+ font-weight: bold;
169
+ }
170
+ .highlight .no {
171
+ color: #66d9ef;
172
+ }
173
+ .highlight .bp {
174
+ color: #f8f8f2;
175
+ }
176
+ .highlight .nb {
177
+ color: #f8f8f2;
178
+ }
179
+ .highlight .ni {
180
+ color: #f8f8f2;
181
+ }
182
+ .highlight .nn {
183
+ color: #f8f8f2;
184
+ }
185
+ .highlight .vc {
186
+ color: #f8f8f2;
187
+ }
188
+ .highlight .vg {
189
+ color: #f8f8f2;
190
+ }
191
+ .highlight .vi {
192
+ color: #f8f8f2;
193
+ }
194
+ .highlight .nv, .highlight .vm {
195
+ color: #f8f8f2;
196
+ }
197
+ .highlight .w {
198
+ color: #f8f8f2;
199
+ }
200
+ .highlight .nl {
201
+ color: #f8f8f2;
202
+ font-weight: bold;
203
+ }
204
+ .highlight .nt {
205
+ color: #f92672;
206
+ }
207
+ .highlight {
208
+ color: #f8f8f2;
209
+ background-color: #49483e;
210
+ }
@@ -0,0 +1,21 @@
1
+ ## Dependencies
2
+
3
+ Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceeding: https://github.com/hakimel/reveal.js#full-setup
4
+
5
+ ## Creating a Theme
6
+
7
+ To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `npm run build -- css-themes`.
8
+
9
+ Each theme file does four things in the following order:
10
+
11
+ 1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**
12
+ Shared utility functions.
13
+
14
+ 2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**
15
+ Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
16
+
17
+ 3. **Override**
18
+ This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.
19
+
20
+ 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
21
+ The template theme file which will generate final CSS output based on the currently defined variables.
@@ -0,0 +1,277 @@
1
+ /**
2
+ * Beige theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(../../lib/font/league-gothic/league-gothic.css);
7
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #f7f2d3;
13
+ background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
14
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
15
+ background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
16
+ background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
17
+ background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
18
+ background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
19
+ background-color: #f7f3de; }
20
+
21
+ .reveal {
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
+ font-weight: normal;
25
+ color: #333; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: rgba(79, 64, 28, 0.99);
30
+ text-shadow: none; }
31
+
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: rgba(79, 64, 28, 0.99);
35
+ text-shadow: none; }
36
+
37
+ .reveal .slides section,
38
+ .reveal .slides section > section {
39
+ line-height: 1.3;
40
+ font-weight: inherit; }
41
+
42
+ /*********************************************
43
+ * HEADERS
44
+ *********************************************/
45
+ .reveal h1,
46
+ .reveal h2,
47
+ .reveal h3,
48
+ .reveal h4,
49
+ .reveal h5,
50
+ .reveal h6 {
51
+ margin: 0 0 20px 0;
52
+ color: #333;
53
+ font-family: "League Gothic", Impact, sans-serif;
54
+ font-weight: normal;
55
+ line-height: 1.2;
56
+ letter-spacing: normal;
57
+ text-transform: uppercase;
58
+ text-shadow: none;
59
+ word-wrap: break-word; }
60
+
61
+ .reveal h1 {
62
+ font-size: 3.77em; }
63
+
64
+ .reveal h2 {
65
+ font-size: 2.11em; }
66
+
67
+ .reveal h3 {
68
+ font-size: 1.55em; }
69
+
70
+ .reveal h4 {
71
+ font-size: 1em; }
72
+
73
+ .reveal h1 {
74
+ text-shadow: 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, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
75
+
76
+ /*********************************************
77
+ * OTHER
78
+ *********************************************/
79
+ .reveal p {
80
+ margin: 20px 0;
81
+ line-height: 1.3; }
82
+
83
+ /* Ensure certain elements are never larger than the slide itself */
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
87
+ max-width: 95%;
88
+ max-height: 95%; }
89
+
90
+ .reveal strong,
91
+ .reveal b {
92
+ font-weight: bold; }
93
+
94
+ .reveal em {
95
+ font-style: italic; }
96
+
97
+ .reveal ol,
98
+ .reveal dl,
99
+ .reveal ul {
100
+ display: inline-block;
101
+ text-align: left;
102
+ margin: 0 0 0 1em; }
103
+
104
+ .reveal ol {
105
+ list-style-type: decimal; }
106
+
107
+ .reveal ul {
108
+ list-style-type: disc; }
109
+
110
+ .reveal ul ul {
111
+ list-style-type: square; }
112
+
113
+ .reveal ul ul ul {
114
+ list-style-type: circle; }
115
+
116
+ .reveal ul ul,
117
+ .reveal ul ol,
118
+ .reveal ol ol,
119
+ .reveal ol ul {
120
+ display: block;
121
+ margin-left: 40px; }
122
+
123
+ .reveal dt {
124
+ font-weight: bold; }
125
+
126
+ .reveal dd {
127
+ margin-left: 40px; }
128
+
129
+ .reveal blockquote {
130
+ display: block;
131
+ position: relative;
132
+ width: 70%;
133
+ margin: 20px auto;
134
+ padding: 5px;
135
+ font-style: italic;
136
+ background: rgba(255, 255, 255, 0.05);
137
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
138
+
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
141
+ display: inline-block; }
142
+
143
+ .reveal q {
144
+ font-style: italic; }
145
+
146
+ .reveal pre {
147
+ display: block;
148
+ position: relative;
149
+ width: 90%;
150
+ margin: 20px auto;
151
+ text-align: left;
152
+ font-size: 0.55em;
153
+ font-family: monospace;
154
+ line-height: 1.2em;
155
+ word-wrap: break-word;
156
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
157
+
158
+ .reveal code {
159
+ font-family: monospace;
160
+ text-transform: none; }
161
+
162
+ .reveal pre code {
163
+ display: block;
164
+ padding: 5px;
165
+ overflow: auto;
166
+ max-height: 400px;
167
+ word-wrap: normal; }
168
+
169
+ .reveal table {
170
+ margin: auto;
171
+ border-collapse: collapse;
172
+ border-spacing: 0; }
173
+
174
+ .reveal table th {
175
+ font-weight: bold; }
176
+
177
+ .reveal table th,
178
+ .reveal table td {
179
+ text-align: left;
180
+ padding: 0.2em 0.5em 0.2em 0.5em;
181
+ border-bottom: 1px solid; }
182
+
183
+ .reveal table th[align="center"],
184
+ .reveal table td[align="center"] {
185
+ text-align: center; }
186
+
187
+ .reveal table th[align="right"],
188
+ .reveal table td[align="right"] {
189
+ text-align: right; }
190
+
191
+ .reveal table tbody tr:last-child th,
192
+ .reveal table tbody tr:last-child td {
193
+ border-bottom: none; }
194
+
195
+ .reveal sup {
196
+ vertical-align: super;
197
+ font-size: smaller; }
198
+
199
+ .reveal sub {
200
+ vertical-align: sub;
201
+ font-size: smaller; }
202
+
203
+ .reveal small {
204
+ display: inline-block;
205
+ font-size: 0.6em;
206
+ line-height: 1.2em;
207
+ vertical-align: top; }
208
+
209
+ .reveal small * {
210
+ vertical-align: top; }
211
+
212
+ /*********************************************
213
+ * LINKS
214
+ *********************************************/
215
+ .reveal a {
216
+ color: #8b743d;
217
+ text-decoration: none;
218
+ -webkit-transition: color .15s ease;
219
+ -moz-transition: color .15s ease;
220
+ transition: color .15s ease; }
221
+
222
+ .reveal a:hover {
223
+ color: #c0a86e;
224
+ text-shadow: none;
225
+ border: none; }
226
+
227
+ .reveal .roll span:after {
228
+ color: #fff;
229
+ background: #564826; }
230
+
231
+ /*********************************************
232
+ * IMAGES
233
+ *********************************************/
234
+ .reveal section img {
235
+ margin: 15px 0px;
236
+ background: rgba(255, 255, 255, 0.12);
237
+ border: 4px solid #333;
238
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
239
+
240
+ .reveal section img.plain {
241
+ border: 0;
242
+ box-shadow: none; }
243
+
244
+ .reveal a img {
245
+ -webkit-transition: all .15s linear;
246
+ -moz-transition: all .15s linear;
247
+ transition: all .15s linear; }
248
+
249
+ .reveal a:hover img {
250
+ background: rgba(255, 255, 255, 0.2);
251
+ border-color: #8b743d;
252
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
253
+
254
+ /*********************************************
255
+ * NAVIGATION CONTROLS
256
+ *********************************************/
257
+ .reveal .controls {
258
+ color: #8b743d; }
259
+
260
+ /*********************************************
261
+ * PROGRESS BAR
262
+ *********************************************/
263
+ .reveal .progress {
264
+ background: rgba(0, 0, 0, 0.2);
265
+ color: #8b743d; }
266
+
267
+ .reveal .progress span {
268
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
269
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
270
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
271
+
272
+ /*********************************************
273
+ * PRINT BACKGROUND
274
+ *********************************************/
275
+ @media print {
276
+ .backgrounds {
277
+ background-color: #f7f3de; } }