ark-jekyll-theme 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +10 -0
  3. data/README.md +60 -0
  4. data/_includes/disqus_comments.html +40 -0
  5. data/_includes/figure +12 -0
  6. data/_includes/footer.html +16 -0
  7. data/_includes/head.html +18 -0
  8. data/_includes/read_time.html +16 -0
  9. data/_layouts/archive-minimal.html +15 -0
  10. data/_layouts/archive.html +24 -0
  11. data/_layouts/default.html +10 -0
  12. data/_layouts/front.html +9 -0
  13. data/_layouts/home-minimal.html +17 -0
  14. data/_layouts/home.html +26 -0
  15. data/_layouts/page.html +14 -0
  16. data/_layouts/post.html +31 -0
  17. data/_sass/_cms.scss +79 -0
  18. data/_sass/_theme.scss +78 -0
  19. data/_sass/_variables.scss +149 -0
  20. data/_sass/scss/_aspect-ratios.scss +142 -0
  21. data/_sass/scss/_background-position.scss +133 -0
  22. data/_sass/scss/_background-size.scss +41 -0
  23. data/_sass/scss/_border-colors.scss +93 -0
  24. data/_sass/scss/_border-radius.scss +134 -0
  25. data/_sass/scss/_border-style.scss +55 -0
  26. data/_sass/scss/_border-widths.scss +81 -0
  27. data/_sass/scss/_borders.scss +65 -0
  28. data/_sass/scss/_box-shadow.scss +48 -0
  29. data/_sass/scss/_box-sizing.scss +49 -0
  30. data/_sass/scss/_clears.scss +47 -0
  31. data/_sass/scss/_coordinates.scss +153 -0
  32. data/_sass/scss/_debug-children.scss +21 -0
  33. data/_sass/scss/_debug-grid.scss +33 -0
  34. data/_sass/scss/_debug.scss +127 -0
  35. data/_sass/scss/_debug_children.scss +18 -0
  36. data/_sass/scss/_display.scss +111 -0
  37. data/_sass/scss/_flexbox.scss +257 -0
  38. data/_sass/scss/_floats.scss +56 -0
  39. data/_sass/scss/_font-family.scss +99 -0
  40. data/_sass/scss/_font-style.scss +36 -0
  41. data/_sass/scss/_font-weight.scss +87 -0
  42. data/_sass/scss/_forms.scss +23 -0
  43. data/_sass/scss/_gradients.scss +29 -0
  44. data/_sass/scss/_heights.scss +131 -0
  45. data/_sass/scss/_hovers.scss +166 -0
  46. data/_sass/scss/_images.scss +18 -0
  47. data/_sass/scss/_letter-spacing.scss +40 -0
  48. data/_sass/scss/_line-height.scss +41 -0
  49. data/_sass/scss/_links.scss +34 -0
  50. data/_sass/scss/_lists.scss +15 -0
  51. data/_sass/scss/_max-widths.scss +105 -0
  52. data/_sass/scss/_module-template.scss +29 -0
  53. data/_sass/scss/_negative-margins.scss +205 -0
  54. data/_sass/scss/_nested.scss +63 -0
  55. data/_sass/scss/_normalize.scss +454 -0
  56. data/_sass/scss/_opacity.scss +27 -0
  57. data/_sass/scss/_outlines.scss +39 -0
  58. data/_sass/scss/_overflow.scss +82 -0
  59. data/_sass/scss/_position.scss +44 -0
  60. data/_sass/scss/_rotations.scss +50 -0
  61. data/_sass/scss/_skins-pseudo.scss +243 -0
  62. data/_sass/scss/_skins.scss +143 -0
  63. data/_sass/scss/_spacing.scss +947 -0
  64. data/_sass/scss/_styles.scss +15 -0
  65. data/_sass/scss/_tables.scss +42 -0
  66. data/_sass/scss/_text-align.scss +49 -0
  67. data/_sass/scss/_text-decoration.scss +42 -0
  68. data/_sass/scss/_text-transform.scss +53 -0
  69. data/_sass/scss/_type-scale.scss +102 -0
  70. data/_sass/scss/_typography.scss +129 -0
  71. data/_sass/scss/_utilities.scss +57 -0
  72. data/_sass/scss/_vertical-align.scss +43 -0
  73. data/_sass/scss/_visibility.scss +58 -0
  74. data/_sass/scss/_white-space.scss +41 -0
  75. data/_sass/scss/_widths.scss +150 -0
  76. data/_sass/scss/_word-break.scss +43 -0
  77. data/_sass/scss/_z-index.scss +60 -0
  78. data/assets/css/ark.scss +5 -0
  79. metadata +137 -3
@@ -0,0 +1,63 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ NESTED
11
+ Tachyons module for styling nested elements
12
+ that are generated by a cms.
13
+
14
+ */
15
+
16
+ .nested-copy-line-height p,
17
+ .nested-copy-line-height ul,
18
+ .nested-copy-line-height ol {
19
+ line-height: $line-height-copy;
20
+ }
21
+
22
+ .nested-headline-line-height h1,
23
+ .nested-headline-line-height h2,
24
+ .nested-headline-line-height h3,
25
+ .nested-headline-line-height h4,
26
+ .nested-headline-line-height h5,
27
+ .nested-headline-line-height h6 {
28
+ line-height: $font-size-4;
29
+ }
30
+
31
+ .nested-list-reset ul,
32
+ .nested-list-reset ol {
33
+ padding-left: 0;
34
+ margin-left: 0;
35
+ list-style-type: none;
36
+ }
37
+
38
+ .nested-copy-indent p+p {
39
+ text-indent: $letter-spacing-1;
40
+ margin-top: $spacing-none;
41
+ margin-bottom: $spacing-none;
42
+ }
43
+
44
+ .nested-copy-seperator p+p {
45
+ margin-top: $spacing-copy-separator;
46
+ }
47
+
48
+ .nested-img img {
49
+ width: 100%;
50
+ max-width: 100%;
51
+ display: block;
52
+ }
53
+
54
+ .nested-links a {
55
+ color: $blue;
56
+ transition: color .15s ease-in;
57
+ }
58
+
59
+ .nested-links a:hover,
60
+ .nested-links a:focus {
61
+ color: $light-blue;
62
+ transition: color .15s ease-in;
63
+ }
@@ -0,0 +1,454 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
9
+
10
+ /* Document
11
+ ========================================================================== */
12
+
13
+ /**
14
+ * 1. Correct the line height in all browsers.
15
+ * 2. Prevent adjustments of font size after orientation changes in
16
+ * IE on Windows Phone and in iOS.
17
+ */
18
+
19
+ html {
20
+ line-height: 1.15; /* 1 */
21
+ -ms-text-size-adjust: 100%; /* 2 */
22
+ -webkit-text-size-adjust: 100%; /* 2 */
23
+ }
24
+
25
+ /* Sections
26
+ ========================================================================== */
27
+
28
+ /**
29
+ * Remove the margin in all browsers (opinionated).
30
+ */
31
+
32
+ body {
33
+ margin: 0;
34
+ }
35
+
36
+ /**
37
+ * Add the correct display in IE 9-.
38
+ */
39
+
40
+ article,
41
+ aside,
42
+ footer,
43
+ header,
44
+ nav,
45
+ section {
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * Correct the font size and margin on `h1` elements within `section` and
51
+ * `article` contexts in Chrome, Firefox, and Safari.
52
+ */
53
+
54
+ h1 {
55
+ font-size: 2em;
56
+ margin: 0.67em 0;
57
+ }
58
+
59
+ /* Grouping content
60
+ ========================================================================== */
61
+
62
+ /**
63
+ * Add the correct display in IE 9-.
64
+ * 1. Add the correct display in IE.
65
+ */
66
+
67
+ figcaption,
68
+ figure,
69
+ main { /* 1 */
70
+ display: block;
71
+ }
72
+
73
+ /**
74
+ * Add the correct margin in IE 8.
75
+ */
76
+
77
+ figure {
78
+ margin: 1em 40px;
79
+ }
80
+
81
+ /**
82
+ * 1. Add the correct box sizing in Firefox.
83
+ * 2. Show the overflow in Edge and IE.
84
+ */
85
+
86
+ hr {
87
+ box-sizing: content-box; /* 1 */
88
+ height: 0; /* 1 */
89
+ overflow: visible; /* 2 */
90
+ }
91
+
92
+ /**
93
+ * 1. Correct the inheritance and scaling of font size in all browsers.
94
+ * 2. Correct the odd `em` font sizing in all browsers.
95
+ */
96
+
97
+ pre {
98
+ font-family: monospace, monospace; /* 1 */
99
+ font-size: 1em; /* 2 */
100
+ }
101
+
102
+ /* Text-level semantics
103
+ ========================================================================== */
104
+
105
+ /**
106
+ * 1. Remove the gray background on active links in IE 10.
107
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
108
+ */
109
+
110
+ a {
111
+ background-color: transparent; /* 1 */
112
+ -webkit-text-decoration-skip: objects; /* 2 */
113
+ }
114
+
115
+ /**
116
+ * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
117
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
118
+ */
119
+
120
+ abbr[title] {
121
+ border-bottom: none; /* 1 */
122
+ text-decoration: underline; /* 2 */
123
+ text-decoration: underline dotted; /* 2 */
124
+ }
125
+
126
+ /**
127
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
128
+ */
129
+
130
+ b,
131
+ strong {
132
+ font-weight: inherit;
133
+ }
134
+
135
+ /**
136
+ * Add the correct font weight in Chrome, Edge, and Safari.
137
+ */
138
+
139
+ b,
140
+ strong {
141
+ font-weight: bolder;
142
+ }
143
+
144
+ /**
145
+ * 1. Correct the inheritance and scaling of font size in all browsers.
146
+ * 2. Correct the odd `em` font sizing in all browsers.
147
+ */
148
+
149
+ code,
150
+ kbd,
151
+ samp {
152
+ font-family: monospace, monospace; /* 1 */
153
+ font-size: 1em; /* 2 */
154
+ }
155
+
156
+ /**
157
+ * Add the correct font style in Android 4.3-.
158
+ */
159
+
160
+ dfn {
161
+ font-style: italic;
162
+ }
163
+
164
+ /**
165
+ * Add the correct background and color in IE 9-.
166
+ */
167
+
168
+ mark {
169
+ background-color: #ff0;
170
+ color: #000;
171
+ }
172
+
173
+ /**
174
+ * Add the correct font size in all browsers.
175
+ */
176
+
177
+ small {
178
+ font-size: 80%;
179
+ }
180
+
181
+ /**
182
+ * Prevent `sub` and `sup` elements from affecting the line height in
183
+ * all browsers.
184
+ */
185
+
186
+ sub,
187
+ sup {
188
+ font-size: 75%;
189
+ line-height: 0;
190
+ position: relative;
191
+ vertical-align: baseline;
192
+ }
193
+
194
+ sub {
195
+ bottom: -0.25em;
196
+ }
197
+
198
+ sup {
199
+ top: -0.5em;
200
+ }
201
+
202
+ /* Embedded content
203
+ ========================================================================== */
204
+
205
+ /**
206
+ * Add the correct display in IE 9-.
207
+ */
208
+
209
+ audio,
210
+ video {
211
+ display: inline-block;
212
+ }
213
+
214
+ /**
215
+ * Add the correct display in iOS 4-7.
216
+ */
217
+
218
+ audio:not([controls]) {
219
+ display: none;
220
+ height: 0;
221
+ }
222
+
223
+ /**
224
+ * Remove the border on images inside links in IE 10-.
225
+ */
226
+
227
+ img {
228
+ border-style: none;
229
+ }
230
+
231
+ /**
232
+ * Hide the overflow in IE.
233
+ */
234
+
235
+ svg:not(:root) {
236
+ overflow: hidden;
237
+ }
238
+
239
+ /* Forms
240
+ ========================================================================== */
241
+
242
+ /**
243
+ * 1. Change the font styles in all browsers (opinionated).
244
+ * 2. Remove the margin in Firefox and Safari.
245
+ */
246
+
247
+ button,
248
+ input,
249
+ optgroup,
250
+ select,
251
+ textarea {
252
+ font-family: sans-serif; /* 1 */
253
+ font-size: 100%; /* 1 */
254
+ line-height: 1.15; /* 1 */
255
+ margin: 0; /* 2 */
256
+ }
257
+
258
+ /**
259
+ * Show the overflow in IE.
260
+ * 1. Show the overflow in Edge.
261
+ */
262
+
263
+ button,
264
+ input { /* 1 */
265
+ overflow: visible;
266
+ }
267
+
268
+ /**
269
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
270
+ * 1. Remove the inheritance of text transform in Firefox.
271
+ */
272
+
273
+ button,
274
+ select { /* 1 */
275
+ text-transform: none;
276
+ }
277
+
278
+ /**
279
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
280
+ * controls in Android 4.
281
+ * 2. Correct the inability to style clickable types in iOS and Safari.
282
+ */
283
+
284
+ button,
285
+ html [type="button"], /* 1 */
286
+ [type="reset"],
287
+ [type="submit"] {
288
+ -webkit-appearance: button; /* 2 */
289
+ }
290
+
291
+ /**
292
+ * Remove the inner border and padding in Firefox.
293
+ */
294
+
295
+ button::-moz-focus-inner,
296
+ [type="button"]::-moz-focus-inner,
297
+ [type="reset"]::-moz-focus-inner,
298
+ [type="submit"]::-moz-focus-inner {
299
+ border-style: none;
300
+ padding: 0;
301
+ }
302
+
303
+ /**
304
+ * Restore the focus styles unset by the previous rule.
305
+ */
306
+
307
+ button:-moz-focusring,
308
+ [type="button"]:-moz-focusring,
309
+ [type="reset"]:-moz-focusring,
310
+ [type="submit"]:-moz-focusring {
311
+ outline: 1px dotted ButtonText;
312
+ }
313
+
314
+ /**
315
+ * Correct the padding in Firefox.
316
+ */
317
+
318
+ fieldset {
319
+ padding: 0.35em 0.75em 0.625em;
320
+ }
321
+
322
+ /**
323
+ * 1. Correct the text wrapping in Edge and IE.
324
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
325
+ * 3. Remove the padding so developers are not caught out when they zero out
326
+ * `fieldset` elements in all browsers.
327
+ */
328
+
329
+ legend {
330
+ box-sizing: border-box; /* 1 */
331
+ color: inherit; /* 2 */
332
+ display: table; /* 1 */
333
+ max-width: 100%; /* 1 */
334
+ padding: 0; /* 3 */
335
+ white-space: normal; /* 1 */
336
+ }
337
+
338
+ /**
339
+ * 1. Add the correct display in IE 9-.
340
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
341
+ */
342
+
343
+ progress {
344
+ display: inline-block; /* 1 */
345
+ vertical-align: baseline; /* 2 */
346
+ }
347
+
348
+ /**
349
+ * Remove the default vertical scrollbar in IE.
350
+ */
351
+
352
+ textarea {
353
+ overflow: auto;
354
+ }
355
+
356
+ /**
357
+ * 1. Add the correct box sizing in IE 10-.
358
+ * 2. Remove the padding in IE 10-.
359
+ */
360
+
361
+ [type="checkbox"],
362
+ [type="radio"] {
363
+ box-sizing: border-box; /* 1 */
364
+ padding: 0; /* 2 */
365
+ }
366
+
367
+ /**
368
+ * Correct the cursor style of increment and decrement buttons in Chrome.
369
+ */
370
+
371
+ [type="number"]::-webkit-inner-spin-button,
372
+ [type="number"]::-webkit-outer-spin-button {
373
+ height: auto;
374
+ }
375
+
376
+ /**
377
+ * 1. Correct the odd appearance in Chrome and Safari.
378
+ * 2. Correct the outline style in Safari.
379
+ */
380
+
381
+ [type="search"] {
382
+ -webkit-appearance: textfield; /* 1 */
383
+ outline-offset: -2px; /* 2 */
384
+ }
385
+
386
+ /**
387
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
388
+ */
389
+
390
+ [type="search"]::-webkit-search-cancel-button,
391
+ [type="search"]::-webkit-search-decoration {
392
+ -webkit-appearance: none;
393
+ }
394
+
395
+ /**
396
+ * 1. Correct the inability to style clickable types in iOS and Safari.
397
+ * 2. Change font properties to `inherit` in Safari.
398
+ */
399
+
400
+ ::-webkit-file-upload-button {
401
+ -webkit-appearance: button; /* 1 */
402
+ font: inherit; /* 2 */
403
+ }
404
+
405
+ /* Interactive
406
+ ========================================================================== */
407
+
408
+ /*
409
+ * Add the correct display in IE 9-.
410
+ * 1. Add the correct display in Edge, IE, and Firefox.
411
+ */
412
+
413
+ details, /* 1 */
414
+ menu {
415
+ display: block;
416
+ }
417
+
418
+ /*
419
+ * Add the correct display in all browsers.
420
+ */
421
+
422
+ summary {
423
+ display: list-item;
424
+ }
425
+
426
+ /* Scripting
427
+ ========================================================================== */
428
+
429
+ /**
430
+ * Add the correct display in IE 9-.
431
+ */
432
+
433
+ canvas {
434
+ display: inline-block;
435
+ }
436
+
437
+ /**
438
+ * Add the correct display in IE.
439
+ */
440
+
441
+ template {
442
+ display: none;
443
+ }
444
+
445
+ /* Hidden
446
+ ========================================================================== */
447
+
448
+ /**
449
+ * Add the correct display in IE 10-.
450
+ */
451
+
452
+ [hidden] {
453
+ display: none;
454
+ }