jekyll-theme-zapocalypse 0.1.0

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 (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +116 -0
  3. data/README.md +118 -0
  4. data/_includes/head-custom-google-analytics.html +10 -0
  5. data/_includes/head-custom-theme-colors.html +5 -0
  6. data/_includes/head-custom.html +12 -0
  7. data/_layouts/default.html +51 -0
  8. data/_sass/fonts.scss +95 -0
  9. data/_sass/jekyll-theme-zapocalypse.scss +314 -0
  10. data/_sass/midnight.scss +4 -0
  11. data/_sass/normalize.scss +492 -0
  12. data/_sass/rouge-base16-dark.scss +81 -0
  13. data/assets/css/ie.scss +3 -0
  14. data/assets/css/style.scss +4 -0
  15. data/assets/fonts/OpenSans-Bold-webfont.eot +0 -0
  16. data/assets/fonts/OpenSans-Bold-webfont.svg +21062 -0
  17. data/assets/fonts/OpenSans-Bold-webfont.ttf +0 -0
  18. data/assets/fonts/OpenSans-Bold-webfont.woff +0 -0
  19. data/assets/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  20. data/assets/fonts/OpenSans-BoldItalic-webfont.svg +21121 -0
  21. data/assets/fonts/OpenSans-BoldItalic-webfont.ttf +0 -0
  22. data/assets/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  23. data/assets/fonts/OpenSans-Italic-webfont.eot +0 -0
  24. data/assets/fonts/OpenSans-Italic-webfont.svg +21164 -0
  25. data/assets/fonts/OpenSans-Italic-webfont.ttf +0 -0
  26. data/assets/fonts/OpenSans-Italic-webfont.woff +0 -0
  27. data/assets/fonts/OpenSans-Light-webfont.eot +0 -0
  28. data/assets/fonts/OpenSans-Light-webfont.svg +21034 -0
  29. data/assets/fonts/OpenSans-Light-webfont.ttf +0 -0
  30. data/assets/fonts/OpenSans-Light-webfont.woff +0 -0
  31. data/assets/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  32. data/assets/fonts/OpenSans-LightItalic-webfont.svg +21161 -0
  33. data/assets/fonts/OpenSans-LightItalic-webfont.ttf +0 -0
  34. data/assets/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  35. data/assets/fonts/OpenSans-Regular-webfont.eot +0 -0
  36. data/assets/fonts/OpenSans-Regular-webfont.svg +21064 -0
  37. data/assets/fonts/OpenSans-Regular-webfont.ttf +0 -0
  38. data/assets/fonts/OpenSans-Regular-webfont.woff +0 -0
  39. data/assets/fonts/OpenSans-Semibold-webfont.eot +0 -0
  40. data/assets/fonts/OpenSans-Semibold-webfont.svg +21055 -0
  41. data/assets/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  42. data/assets/fonts/OpenSans-Semibold-webfont.woff +0 -0
  43. data/assets/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  44. data/assets/fonts/OpenSans-SemiboldItalic-webfont.svg +21154 -0
  45. data/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  46. data/assets/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  47. data/assets/images/bullet.png +0 -0
  48. data/assets/images/hr.gif +0 -0
  49. data/assets/images/nav-bg.gif +0 -0
  50. data/assets/js/respond.js +779 -0
  51. metadata +170 -0
@@ -0,0 +1,492 @@
1
+ /*! normalize.css 2012-02-07T12:37 UTC - https://github.com/necolas/normalize.css */
2
+
3
+ /* =============================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /*
8
+ * Corrects block display not defined in IE6/7/8/9 & FF3
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ nav,
20
+ section,
21
+ summary {
22
+ display: block;
23
+ }
24
+
25
+ /*
26
+ * Corrects inline-block display not defined in IE6/7/8/9 & FF3
27
+ */
28
+
29
+ audio,
30
+ canvas,
31
+ video {
32
+ display: inline-block;
33
+ *display: inline;
34
+ *zoom: 1;
35
+ }
36
+
37
+ /*
38
+ * Prevents modern browsers from displaying 'audio' without controls
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ }
44
+
45
+ /*
46
+ * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
47
+ * Known issue: no IE6 support
48
+ */
49
+
50
+ [hidden] {
51
+ display: none;
52
+ }
53
+
54
+
55
+ /* =============================================================================
56
+ Base
57
+ ========================================================================== */
58
+
59
+ /*
60
+ * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
61
+ * http://clagnut.com/blog/348/#c790
62
+ * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
63
+ * www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
64
+ */
65
+
66
+ html {
67
+ font-size: 100%; /* 1 */
68
+ -webkit-text-size-adjust: 100%; /* 2 */
69
+ -ms-text-size-adjust: 100%; /* 2 */
70
+ }
71
+
72
+ /*
73
+ * Addresses font-family inconsistency between 'textarea' and other form elements.
74
+ */
75
+
76
+ html,
77
+ button,
78
+ input,
79
+ select,
80
+ textarea {
81
+ font-family: sans-serif;
82
+ }
83
+
84
+ /*
85
+ * Addresses margins handled incorrectly in IE6/7
86
+ */
87
+
88
+ body {
89
+ margin: 0;
90
+ }
91
+
92
+
93
+ /* =============================================================================
94
+ Links
95
+ ========================================================================== */
96
+
97
+ /*
98
+ * Addresses outline displayed oddly in Chrome
99
+ */
100
+
101
+ a:focus {
102
+ outline: thin dotted;
103
+ }
104
+
105
+ /*
106
+ * Improves readability when focused and also mouse hovered in all browsers
107
+ * people.opera.com/patrickl/experiments/keyboard/test
108
+ */
109
+
110
+ a:hover,
111
+ a:active {
112
+ outline: 0;
113
+ }
114
+
115
+
116
+ /* =============================================================================
117
+ Typography
118
+ ========================================================================== */
119
+
120
+ /*
121
+ * Addresses font sizes and margins set differently in IE6/7
122
+ * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
123
+ */
124
+
125
+ h1 {
126
+ font-size: 2em;
127
+ margin: 0.67em 0;
128
+ }
129
+
130
+ h2 {
131
+ font-size: 1.5em;
132
+ margin: 0.83em 0;
133
+ }
134
+
135
+ h3 {
136
+ font-size: 1.17em;
137
+ margin: 1em 0;
138
+ }
139
+
140
+ h4 {
141
+ font-size: 1em;
142
+ margin: 1.33em 0;
143
+ }
144
+
145
+ h5 {
146
+ font-size: 0.83em;
147
+ margin: 1.67em 0;
148
+ }
149
+
150
+ h6 {
151
+ font-size: 0.75em;
152
+ margin: 2.33em 0;
153
+ }
154
+
155
+ /*
156
+ * Addresses styling not present in IE7/8/9, S5, Chrome
157
+ */
158
+
159
+ abbr[title] {
160
+ border-bottom: 1px dotted;
161
+ }
162
+
163
+ /*
164
+ * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
165
+ */
166
+
167
+ b,
168
+ strong {
169
+ font-weight: bold;
170
+ }
171
+
172
+ blockquote {
173
+ margin: 1em 40px;
174
+ }
175
+
176
+ /*
177
+ * Addresses styling not present in S5, Chrome
178
+ */
179
+
180
+ dfn {
181
+ font-style: italic;
182
+ }
183
+
184
+ /*
185
+ * Addresses styling not present in IE6/7/8/9
186
+ */
187
+
188
+ mark {
189
+ background: #ff0;
190
+ color: #000;
191
+ }
192
+
193
+ /*
194
+ * Addresses margins set differently in IE6/7
195
+ */
196
+
197
+ p,
198
+ pre {
199
+ margin: 1em 0;
200
+ }
201
+
202
+ /*
203
+ * Corrects font family set oddly in IE6, S4/5, Chrome
204
+ * en.wikipedia.org/wiki/User:Davidgothberg/Test59
205
+ */
206
+
207
+ pre,
208
+ code,
209
+ kbd,
210
+ samp {
211
+ font-family: monospace, serif;
212
+ _font-family: 'courier new', monospace;
213
+ font-size: 1em;
214
+ }
215
+
216
+ /*
217
+ * 1. Addresses CSS quotes not supported in IE6/7
218
+ * 2. Addresses quote property not supported in S4
219
+ */
220
+
221
+ /* 1 */
222
+
223
+ q {
224
+ quotes: none;
225
+ }
226
+
227
+ /* 2 */
228
+
229
+ q:before,
230
+ q:after {
231
+ content: '';
232
+ content: none;
233
+ }
234
+
235
+ small {
236
+ font-size: 75%;
237
+ }
238
+
239
+ /*
240
+ * Prevents sub and sup affecting line-height in all browsers
241
+ * gist.github.com/413930
242
+ */
243
+
244
+ sub,
245
+ sup {
246
+ font-size: 75%;
247
+ line-height: 0;
248
+ position: relative;
249
+ vertical-align: baseline;
250
+ }
251
+
252
+ sup {
253
+ top: -0.5em;
254
+ }
255
+
256
+ sub {
257
+ bottom: -0.25em;
258
+ }
259
+
260
+
261
+ /* =============================================================================
262
+ Lists
263
+ ========================================================================== */
264
+
265
+ /*
266
+ * Addresses margins set differently in IE6/7
267
+ */
268
+
269
+ dl,
270
+ menu,
271
+ ol,
272
+ ul {
273
+ margin: 1em 0;
274
+ }
275
+
276
+ dd {
277
+ margin: 0 0 0 40px;
278
+ }
279
+
280
+ /*
281
+ * Addresses paddings set differently in IE6/7
282
+ */
283
+
284
+ menu,
285
+ ol,
286
+ ul {
287
+ padding: 0 0 0 40px;
288
+ }
289
+
290
+ /*
291
+ * Corrects list images handled incorrectly in IE7
292
+ */
293
+
294
+ nav ul,
295
+ nav ol {
296
+ list-style: none;
297
+ list-style-image: none;
298
+ }
299
+
300
+
301
+ /* =============================================================================
302
+ Embedded content
303
+ ========================================================================== */
304
+
305
+ /*
306
+ * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
307
+ * 2. Improves image quality when scaled in IE7
308
+ * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
309
+ */
310
+
311
+ img {
312
+ border: 0; /* 1 */
313
+ -ms-interpolation-mode: bicubic; /* 2 */
314
+ }
315
+
316
+ /*
317
+ * Corrects overflow displayed oddly in IE9
318
+ */
319
+
320
+ svg:not(:root) {
321
+ overflow: hidden;
322
+ }
323
+
324
+
325
+ /* =============================================================================
326
+ Figures
327
+ ========================================================================== */
328
+
329
+ /*
330
+ * Addresses margin not present in IE6/7/8/9, S5, O11
331
+ */
332
+
333
+ figure {
334
+ margin: 0;
335
+ }
336
+
337
+
338
+ /* =============================================================================
339
+ Forms
340
+ ========================================================================== */
341
+
342
+ /*
343
+ * Corrects margin displayed oddly in IE6/7
344
+ */
345
+
346
+ form {
347
+ margin: 0;
348
+ }
349
+
350
+ /*
351
+ * Define consistent border, margin, and padding
352
+ */
353
+
354
+ fieldset {
355
+ border: 1px solid #c0c0c0;
356
+ margin: 0 2px;
357
+ padding: 0.35em 0.625em 0.75em;
358
+ }
359
+
360
+ /*
361
+ * 1. Corrects color not being inherited in IE6/7/8/9
362
+ * 2. Corrects text not wrapping in FF3
363
+ * 3. Corrects alignment displayed oddly in IE6/7
364
+ */
365
+
366
+ legend {
367
+ border: 0; /* 1 */
368
+ padding: 0;
369
+ white-space: normal; /* 2 */
370
+ *margin-left: -7px; /* 3 */
371
+ }
372
+
373
+ /*
374
+ * 1. Corrects font size not being inherited in all browsers
375
+ * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
376
+ * 3. Improves appearance and consistency in all browsers
377
+ */
378
+
379
+ button,
380
+ input,
381
+ select,
382
+ textarea {
383
+ font-size: 100%; /* 1 */
384
+ margin: 0; /* 2 */
385
+ vertical-align: baseline; /* 3 */
386
+ *vertical-align: middle; /* 3 */
387
+ }
388
+
389
+ /*
390
+ * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
391
+ */
392
+
393
+ button,
394
+ input {
395
+ line-height: normal; /* 1 */
396
+ }
397
+
398
+ /*
399
+ * 1. Improves usability and consistency of cursor style between image-type 'input' and others
400
+ * 2. Corrects inability to style clickable 'input' types in iOS
401
+ * 3. Removes inner spacing in IE7 without affecting normal text inputs
402
+ * Known issue: inner spacing remains in IE6
403
+ */
404
+
405
+ button,
406
+ input[type="button"],
407
+ input[type="reset"],
408
+ input[type="submit"] {
409
+ cursor: pointer; /* 1 */
410
+ -webkit-appearance: button; /* 2 */
411
+ *overflow: visible; /* 3 */
412
+ }
413
+
414
+ /*
415
+ * Re-set default cursor for disabled elements
416
+ */
417
+
418
+ button[disabled],
419
+ input[disabled] {
420
+ cursor: default;
421
+ }
422
+
423
+ /*
424
+ * 1. Addresses box sizing set to content-box in IE8/9
425
+ * 2. Removes excess padding in IE8/9
426
+ * 3. Removes excess padding in IE7
427
+ Known issue: excess padding remains in IE6
428
+ */
429
+
430
+ input[type="checkbox"],
431
+ input[type="radio"] {
432
+ box-sizing: border-box; /* 1 */
433
+ padding: 0; /* 2 */
434
+ *height: 13px; /* 3 */
435
+ *width: 13px; /* 3 */
436
+ }
437
+
438
+ /*
439
+ * 1. Addresses appearance set to searchfield in S5, Chrome
440
+ * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
441
+ */
442
+
443
+ input[type="search"] {
444
+ -webkit-appearance: textfield; /* 1 */
445
+ -moz-box-sizing: content-box;
446
+ -webkit-box-sizing: content-box; /* 2 */
447
+ box-sizing: content-box;
448
+ }
449
+
450
+ /*
451
+ * Removes inner padding and search cancel button in S5, Chrome on OS X
452
+ */
453
+
454
+ input[type="search"]::-webkit-search-decoration,
455
+ input[type="search"]::-webkit-search-cancel-button {
456
+ -webkit-appearance: none;
457
+ }
458
+
459
+ /*
460
+ * Removes inner padding and border in FF3+
461
+ * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
462
+ */
463
+
464
+ button::-moz-focus-inner,
465
+ input::-moz-focus-inner {
466
+ border: 0;
467
+ padding: 0;
468
+ }
469
+
470
+ /*
471
+ * 1. Removes default vertical scrollbar in IE6/7/8/9
472
+ * 2. Improves readability and alignment in all browsers
473
+ */
474
+
475
+ textarea {
476
+ overflow: auto; /* 1 */
477
+ vertical-align: top; /* 2 */
478
+ }
479
+
480
+
481
+ /* =============================================================================
482
+ Tables
483
+ ========================================================================== */
484
+
485
+ /*
486
+ * Remove most spacing between table cells
487
+ */
488
+
489
+ table {
490
+ border-collapse: collapse;
491
+ border-spacing: 0;
492
+ }
@@ -0,0 +1,81 @@
1
+ /*
2
+ generated by rouge http://rouge.jneen.net/
3
+ original base16 by Chris Kempson (https://github.com/chriskempson/base16)
4
+ */
5
+
6
+ .highlight table td { padding: 5px; }
7
+ .highlight table pre { margin: 0; }
8
+ .highlight, .highlight .w {
9
+ color: #d0d0d0;
10
+ }
11
+ .highlight .err {
12
+ color: #151515;
13
+ background-color: #ac4142;
14
+ }
15
+ .highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
16
+ color: #888;
17
+ }
18
+ .highlight .cp {
19
+ color: #f4bf75;
20
+ }
21
+ .highlight .nt {
22
+ color: #f4bf75;
23
+ }
24
+ .highlight .o, .highlight .ow {
25
+ color: #d0d0d0;
26
+ }
27
+ .highlight .p, .highlight .pi {
28
+ color: #d0d0d0;
29
+ }
30
+ .highlight .gi {
31
+ color: #90a959;
32
+ }
33
+ .highlight .gd {
34
+ color: #ac4142;
35
+ }
36
+ .highlight .gh {
37
+ color: #6a9fb5;
38
+ font-weight: bold;
39
+ }
40
+ .highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
41
+ color: #aa759f;
42
+ }
43
+ .highlight .kc {
44
+ color: #d28445;
45
+ }
46
+ .highlight .kt {
47
+ color: #d28445;
48
+ }
49
+ .highlight .kd {
50
+ color: #d28445;
51
+ }
52
+ .highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
53
+ color: #90a959;
54
+ }
55
+ .highlight .sr {
56
+ color: #75b5aa;
57
+ }
58
+ .highlight .si {
59
+ color: #8f5536;
60
+ }
61
+ .highlight .se {
62
+ color: #8f5536;
63
+ }
64
+ .highlight .nn {
65
+ color: #f4bf75;
66
+ }
67
+ .highlight .nc {
68
+ color: #f4bf75;
69
+ }
70
+ .highlight .no {
71
+ color: #f4bf75;
72
+ }
73
+ .highlight .na {
74
+ color: #6a9fb5;
75
+ }
76
+ .highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
77
+ color: #90a959;
78
+ }
79
+ .highlight .ss {
80
+ color: #90a959;
81
+ }
@@ -0,0 +1,3 @@
1
+ nav {
2
+ display: none;
3
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "jekyll-theme-zapocalypse";