scateu.me-jekyll-theme 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/css/main.scss +56 -0
  3. data/feed.xml +30 -0
  4. data/index.html +22 -0
  5. data/js/.DS_Store +0 -0
  6. data/js/flowchart-latest.js +991 -0
  7. data/js/jquery-3.1.1.min.js +4 -0
  8. data/js/qrcode.min.js +1 -0
  9. data/js/raphael-min.js +11 -0
  10. data/js/reveal.js/.gitignore +13 -0
  11. data/js/reveal.js/.travis.yml +5 -0
  12. data/js/reveal.js/CONTRIBUTING.md +23 -0
  13. data/js/reveal.js/Gruntfile.js +176 -0
  14. data/js/reveal.js/LICENSE +19 -0
  15. data/js/reveal.js/README.md +1148 -0
  16. data/js/reveal.js/bower.json +27 -0
  17. data/js/reveal.js/css/print/paper.css +202 -0
  18. data/js/reveal.js/css/print/pdf.css +160 -0
  19. data/js/reveal.js/css/reveal.css +1344 -0
  20. data/js/reveal.js/css/reveal.scss +1412 -0
  21. data/js/reveal.js/css/theme/README.md +21 -0
  22. data/js/reveal.js/css/theme/beige.css +291 -0
  23. data/js/reveal.js/css/theme/black.css +287 -0
  24. data/js/reveal.js/css/theme/blood.css +310 -0
  25. data/js/reveal.js/css/theme/league.css +293 -0
  26. data/js/reveal.js/css/theme/moon.css +291 -0
  27. data/js/reveal.js/css/theme/night.css +285 -0
  28. data/js/reveal.js/css/theme/serif.css +287 -0
  29. data/js/reveal.js/css/theme/simple.css +287 -0
  30. data/js/reveal.js/css/theme/sky.css +294 -0
  31. data/js/reveal.js/css/theme/solarized.css +291 -0
  32. data/js/reveal.js/css/theme/source/beige.scss +39 -0
  33. data/js/reveal.js/css/theme/source/black.scss +49 -0
  34. data/js/reveal.js/css/theme/source/blood.scss +79 -0
  35. data/js/reveal.js/css/theme/source/league.scss +34 -0
  36. data/js/reveal.js/css/theme/source/moon.scss +57 -0
  37. data/js/reveal.js/css/theme/source/night.scss +35 -0
  38. data/js/reveal.js/css/theme/source/serif.scss +35 -0
  39. data/js/reveal.js/css/theme/source/simple.scss +38 -0
  40. data/js/reveal.js/css/theme/source/sky.scss +46 -0
  41. data/js/reveal.js/css/theme/source/solarized.scss +63 -0
  42. data/js/reveal.js/css/theme/source/white.scss +49 -0
  43. data/js/reveal.js/css/theme/template/mixins.scss +29 -0
  44. data/js/reveal.js/css/theme/template/settings.scss +43 -0
  45. data/js/reveal.js/css/theme/template/theme.scss +346 -0
  46. data/js/reveal.js/css/theme/white.css +287 -0
  47. data/js/reveal.js/demo.html +410 -0
  48. data/js/reveal.js/index.html +50 -0
  49. data/js/reveal.js/js/reveal.js +4744 -0
  50. data/js/reveal.js/lib/css/zenburn.css +80 -0
  51. data/js/reveal.js/lib/font/league-gothic/LICENSE +2 -0
  52. data/js/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  53. data/js/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  54. data/js/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  55. data/js/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  56. data/js/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  57. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  58. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  59. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  60. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  61. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  62. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  63. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  64. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  65. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  66. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  67. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  68. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  69. data/js/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  70. data/js/reveal.js/lib/js/classList.js +2 -0
  71. data/js/reveal.js/lib/js/head.min.js +9 -0
  72. data/js/reveal.js/lib/js/html5shiv.js +7 -0
  73. data/js/reveal.js/package.json +44 -0
  74. data/js/reveal.js/plugin/highlight/highlight.js +31 -0
  75. data/js/reveal.js/plugin/markdown/example.html +129 -0
  76. data/js/reveal.js/plugin/markdown/markdown.js +405 -0
  77. data/js/reveal.js/plugin/markdown/marked.js +6 -0
  78. data/js/reveal.js/plugin/math/math.js +67 -0
  79. data/js/reveal.js/plugin/multiplex/client.js +13 -0
  80. data/js/reveal.js/plugin/multiplex/index.js +64 -0
  81. data/js/reveal.js/plugin/multiplex/master.js +31 -0
  82. data/js/reveal.js/plugin/multiplex/package.json +19 -0
  83. data/js/reveal.js/plugin/notes-server/client.js +65 -0
  84. data/js/reveal.js/plugin/notes-server/index.js +69 -0
  85. data/js/reveal.js/plugin/notes-server/notes.html +407 -0
  86. data/js/reveal.js/plugin/notes/notes.html +414 -0
  87. data/js/reveal.js/plugin/notes/notes.js +136 -0
  88. data/js/reveal.js/plugin/print-pdf/print-pdf.js +48 -0
  89. data/js/reveal.js/plugin/search/search.js +196 -0
  90. data/js/reveal.js/plugin/zoom-js/zoom.js +278 -0
  91. data/js/reveal.js/test/examples/assets/image1.png +0 -0
  92. data/js/reveal.js/test/examples/assets/image2.png +0 -0
  93. data/js/reveal.js/test/examples/barebones.html +41 -0
  94. data/js/reveal.js/test/examples/embedded-media.html +49 -0
  95. data/js/reveal.js/test/examples/math.html +185 -0
  96. data/js/reveal.js/test/examples/slide-backgrounds.html +144 -0
  97. data/js/reveal.js/test/examples/slide-transitions.html +101 -0
  98. data/js/reveal.js/test/qunit-1.12.0.css +244 -0
  99. data/js/reveal.js/test/qunit-1.12.0.js +2212 -0
  100. data/js/reveal.js/test/test-markdown-element-attributes.html +134 -0
  101. data/js/reveal.js/test/test-markdown-element-attributes.js +46 -0
  102. data/js/reveal.js/test/test-markdown-slide-attributes.html +128 -0
  103. data/js/reveal.js/test/test-markdown-slide-attributes.js +47 -0
  104. data/js/reveal.js/test/test-markdown.html +52 -0
  105. data/js/reveal.js/test/test-markdown.js +15 -0
  106. data/js/reveal.js/test/test-pdf.html +83 -0
  107. data/js/reveal.js/test/test-pdf.js +15 -0
  108. data/js/reveal.js/test/test.html +86 -0
  109. data/js/reveal.js/test/test.js +597 -0
  110. data/js/sequence-diagram-min.js +8 -0
  111. data/js/underscore-min.js +1 -0
  112. metadata +111 -1
@@ -0,0 +1,49 @@
1
+ /**
2
+ * White theme for reveal.js. This is the opposite of the 'black' theme.
3
+ *
4
+ * By 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: #fff;
20
+
21
+ $mainColor: #222;
22
+ $headingColor: #222;
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: #2a76dd;
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-dark-background {
41
+ &, h1, h2, h3, h4, h5, h6 {
42
+ color: #fff;
43
+ }
44
+ }
45
+
46
+
47
+ // Theme template ------------------------------
48
+ @import "../template/theme";
49
+ // ---------------------------------------------
@@ -0,0 +1,29 @@
1
+ @mixin vertical-gradient( $top, $bottom ) {
2
+ background: $top;
3
+ background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
4
+ background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
5
+ background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
6
+ background: -o-linear-gradient( top, $top 0%, $bottom 100% );
7
+ background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
8
+ background: linear-gradient( top, $top 0%, $bottom 100% );
9
+ }
10
+
11
+ @mixin horizontal-gradient( $top, $bottom ) {
12
+ background: $top;
13
+ background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
14
+ background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
15
+ background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
16
+ background: -o-linear-gradient( left, $top 0%, $bottom 100% );
17
+ background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
18
+ background: linear-gradient( left, $top 0%, $bottom 100% );
19
+ }
20
+
21
+ @mixin radial-gradient( $outer, $inner, $type: circle ) {
22
+ background: $outer;
23
+ background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
24
+ background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
25
+ background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
26
+ background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
27
+ background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
28
+ background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
29
+ }
@@ -0,0 +1,43 @@
1
+ // Base settings for all themes that can optionally be
2
+ // overridden by the super-theme
3
+
4
+ // Background of the presentation
5
+ $backgroundColor: #2b2b2b;
6
+
7
+ // Primary/body text
8
+ $mainFont: 'Lato', sans-serif;
9
+ $mainFontSize: 36px;
10
+ $mainColor: #eee;
11
+
12
+ // Vertical spacing between blocks of text
13
+ $blockMargin: 20px;
14
+
15
+ // Headings
16
+ $headingMargin: 0 0 $blockMargin 0;
17
+ $headingFont: 'League Gothic', Impact, sans-serif;
18
+ $headingColor: #eee;
19
+ $headingLineHeight: 1.2;
20
+ $headingLetterSpacing: normal;
21
+ $headingTextTransform: uppercase;
22
+ $headingTextShadow: none;
23
+ $headingFontWeight: normal;
24
+ $heading1TextShadow: $headingTextShadow;
25
+
26
+ $heading1Size: 3.77em;
27
+ $heading2Size: 2.11em;
28
+ $heading3Size: 1.55em;
29
+ $heading4Size: 1.00em;
30
+
31
+ // Links and actions
32
+ $linkColor: #13DAEC;
33
+ $linkColorHover: lighten( $linkColor, 20% );
34
+
35
+ // Text selection
36
+ $selectionBackgroundColor: #FF5E99;
37
+ $selectionColor: #fff;
38
+
39
+ // Generates the presentation background, can be overridden
40
+ // to return a background image or gradient
41
+ @mixin bodyBackground() {
42
+ background: $backgroundColor;
43
+ }
@@ -0,0 +1,346 @@
1
+ // Base theme template for reveal.js
2
+
3
+ /*********************************************
4
+ * GLOBAL STYLES
5
+ *********************************************/
6
+
7
+ body {
8
+ @include bodyBackground();
9
+ background-color: $backgroundColor;
10
+ }
11
+
12
+ .reveal {
13
+ font-family: $mainFont;
14
+ font-size: $mainFontSize;
15
+ font-weight: normal;
16
+ color: $mainColor;
17
+ }
18
+
19
+ ::selection {
20
+ color: $selectionColor;
21
+ background: $selectionBackgroundColor;
22
+ text-shadow: none;
23
+ }
24
+
25
+ .reveal .slides>section,
26
+ .reveal .slides>section>section {
27
+ line-height: 1.3;
28
+ font-weight: inherit;
29
+ }
30
+
31
+ /*********************************************
32
+ * HEADERS
33
+ *********************************************/
34
+
35
+ .reveal h1,
36
+ .reveal h2,
37
+ .reveal h3,
38
+ .reveal h4,
39
+ .reveal h5,
40
+ .reveal h6 {
41
+ margin: $headingMargin;
42
+ color: $headingColor;
43
+
44
+ font-family: $headingFont;
45
+ font-weight: $headingFontWeight;
46
+ line-height: $headingLineHeight;
47
+ letter-spacing: $headingLetterSpacing;
48
+
49
+ text-transform: $headingTextTransform;
50
+ text-shadow: $headingTextShadow;
51
+
52
+ word-wrap: break-word;
53
+ }
54
+
55
+ .reveal h1 {font-size: $heading1Size; }
56
+ .reveal h2 {font-size: $heading2Size; }
57
+ .reveal h3 {font-size: $heading3Size; }
58
+ .reveal h4 {font-size: $heading4Size; }
59
+
60
+ .reveal h1 {
61
+ text-shadow: $heading1TextShadow;
62
+ }
63
+
64
+
65
+ /*********************************************
66
+ * OTHER
67
+ *********************************************/
68
+
69
+ .reveal p {
70
+ margin: $blockMargin 0;
71
+ line-height: 1.3;
72
+ }
73
+
74
+ /* Ensure certain elements are never larger than the slide itself */
75
+ .reveal img,
76
+ .reveal video,
77
+ .reveal iframe {
78
+ max-width: 95%;
79
+ max-height: 95%;
80
+ }
81
+ .reveal strong,
82
+ .reveal b {
83
+ font-weight: bold;
84
+ }
85
+
86
+ .reveal em {
87
+ font-style: italic;
88
+ }
89
+
90
+ .reveal ol,
91
+ .reveal dl,
92
+ .reveal ul {
93
+ display: inline-block;
94
+
95
+ text-align: left;
96
+ margin: 0 0 0 1em;
97
+ }
98
+
99
+ .reveal ol {
100
+ list-style-type: decimal;
101
+ }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc;
105
+ }
106
+
107
+ .reveal ul ul {
108
+ list-style-type: square;
109
+ }
110
+
111
+ .reveal ul ul ul {
112
+ list-style-type: circle;
113
+ }
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
+
123
+ .reveal dt {
124
+ font-weight: bold;
125
+ }
126
+
127
+ .reveal dd {
128
+ margin-left: 40px;
129
+ }
130
+
131
+ .reveal q,
132
+ .reveal blockquote {
133
+ quotes: none;
134
+ }
135
+
136
+ .reveal blockquote {
137
+ display: block;
138
+ position: relative;
139
+ width: 70%;
140
+ margin: $blockMargin auto;
141
+ padding: 5px;
142
+
143
+ font-style: italic;
144
+ background: rgba(255, 255, 255, 0.05);
145
+ box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
146
+ }
147
+ .reveal blockquote p:first-child,
148
+ .reveal blockquote p:last-child {
149
+ display: inline-block;
150
+ }
151
+
152
+ .reveal q {
153
+ font-style: italic;
154
+ }
155
+
156
+ .reveal pre {
157
+ display: block;
158
+ position: relative;
159
+ width: 90%;
160
+ margin: $blockMargin auto;
161
+
162
+ text-align: left;
163
+ font-size: 0.55em;
164
+ font-family: monospace;
165
+ line-height: 1.2em;
166
+
167
+ word-wrap: break-word;
168
+
169
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
170
+ }
171
+ .reveal code {
172
+ font-family: monospace;
173
+ }
174
+
175
+ .reveal pre code {
176
+ display: block;
177
+ padding: 5px;
178
+ overflow: auto;
179
+ max-height: 400px;
180
+ word-wrap: normal;
181
+ }
182
+
183
+ .reveal table {
184
+ margin: auto;
185
+ border-collapse: collapse;
186
+ border-spacing: 0;
187
+ }
188
+
189
+ .reveal table th {
190
+ font-weight: bold;
191
+ }
192
+
193
+ .reveal table th,
194
+ .reveal table td {
195
+ text-align: left;
196
+ padding: 0.2em 0.5em 0.2em 0.5em;
197
+ border-bottom: 1px solid;
198
+ }
199
+
200
+ .reveal table th[align="center"],
201
+ .reveal table td[align="center"] {
202
+ text-align: center;
203
+ }
204
+
205
+ .reveal table th[align="right"],
206
+ .reveal table td[align="right"] {
207
+ text-align: right;
208
+ }
209
+
210
+ .reveal table tbody tr:last-child th,
211
+ .reveal table tbody tr:last-child td {
212
+ border-bottom: none;
213
+ }
214
+
215
+ .reveal sup {
216
+ vertical-align: super;
217
+ }
218
+ .reveal sub {
219
+ vertical-align: sub;
220
+ }
221
+
222
+ .reveal small {
223
+ display: inline-block;
224
+ font-size: 0.6em;
225
+ line-height: 1.2em;
226
+ vertical-align: top;
227
+ }
228
+
229
+ .reveal small * {
230
+ vertical-align: top;
231
+ }
232
+
233
+
234
+ /*********************************************
235
+ * LINKS
236
+ *********************************************/
237
+
238
+ .reveal a {
239
+ color: $linkColor;
240
+ text-decoration: none;
241
+
242
+ -webkit-transition: color .15s ease;
243
+ -moz-transition: color .15s ease;
244
+ transition: color .15s ease;
245
+ }
246
+ .reveal a:hover {
247
+ color: $linkColorHover;
248
+
249
+ text-shadow: none;
250
+ border: none;
251
+ }
252
+
253
+ .reveal .roll span:after {
254
+ color: #fff;
255
+ background: darken( $linkColor, 15% );
256
+ }
257
+
258
+
259
+ /*********************************************
260
+ * IMAGES
261
+ *********************************************/
262
+
263
+ .reveal section img {
264
+ margin: 15px 0px;
265
+ background: rgba(255,255,255,0.12);
266
+ border: 4px solid $mainColor;
267
+
268
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
269
+ }
270
+
271
+ .reveal section img.plain {
272
+ border: 0;
273
+ box-shadow: none;
274
+ }
275
+
276
+ .reveal a img {
277
+ -webkit-transition: all .15s linear;
278
+ -moz-transition: all .15s linear;
279
+ transition: all .15s linear;
280
+ }
281
+
282
+ .reveal a:hover img {
283
+ background: rgba(255,255,255,0.2);
284
+ border-color: $linkColor;
285
+
286
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
287
+ }
288
+
289
+
290
+ /*********************************************
291
+ * NAVIGATION CONTROLS
292
+ *********************************************/
293
+
294
+ .reveal .controls .navigate-left,
295
+ .reveal .controls .navigate-left.enabled {
296
+ border-right-color: $linkColor;
297
+ }
298
+
299
+ .reveal .controls .navigate-right,
300
+ .reveal .controls .navigate-right.enabled {
301
+ border-left-color: $linkColor;
302
+ }
303
+
304
+ .reveal .controls .navigate-up,
305
+ .reveal .controls .navigate-up.enabled {
306
+ border-bottom-color: $linkColor;
307
+ }
308
+
309
+ .reveal .controls .navigate-down,
310
+ .reveal .controls .navigate-down.enabled {
311
+ border-top-color: $linkColor;
312
+ }
313
+
314
+ .reveal .controls .navigate-left.enabled:hover {
315
+ border-right-color: $linkColorHover;
316
+ }
317
+
318
+ .reveal .controls .navigate-right.enabled:hover {
319
+ border-left-color: $linkColorHover;
320
+ }
321
+
322
+ .reveal .controls .navigate-up.enabled:hover {
323
+ border-bottom-color: $linkColorHover;
324
+ }
325
+
326
+ .reveal .controls .navigate-down.enabled:hover {
327
+ border-top-color: $linkColorHover;
328
+ }
329
+
330
+
331
+ /*********************************************
332
+ * PROGRESS BAR
333
+ *********************************************/
334
+
335
+ .reveal .progress {
336
+ background: rgba(0,0,0,0.2);
337
+ }
338
+ .reveal .progress span {
339
+ background: $linkColor;
340
+
341
+ -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
342
+ -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
343
+ transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
344
+ }
345
+
346
+