creek-jekyll-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (178) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +81 -0
  4. data/_config.yml +306 -0
  5. data/_data/README.md +3 -0
  6. data/_data/navigation/docs.yml +56 -0
  7. data/_data/navigation/main.yml +12 -0
  8. data/_data/navigation.yml +68 -0
  9. data/_data/ui-text.yml +2024 -0
  10. data/_includes/analytics-providers/custom.html +3 -0
  11. data/_includes/analytics-providers/google-gtag.html +9 -0
  12. data/_includes/analytics-providers/google-universal.html +7 -0
  13. data/_includes/analytics-providers/google.html +14 -0
  14. data/_includes/analytics.html +14 -0
  15. data/_includes/archive-single.html +30 -0
  16. data/_includes/author-profile-custom-links.html +7 -0
  17. data/_includes/author-profile.html +246 -0
  18. data/_includes/breadcrumbs.html +40 -0
  19. data/_includes/browser-upgrade.html +2 -0
  20. data/_includes/category-list.html +19 -0
  21. data/_includes/comment.html +22 -0
  22. data/_includes/comments-providers/custom.html +3 -0
  23. data/_includes/comments-providers/custom_scripts.html +3 -0
  24. data/_includes/comments-providers/discourse.html +13 -0
  25. data/_includes/comments-providers/disqus.html +15 -0
  26. data/_includes/comments-providers/facebook.html +8 -0
  27. data/_includes/comments-providers/giscus.html +24 -0
  28. data/_includes/comments-providers/scripts.html +20 -0
  29. data/_includes/comments-providers/staticman.html +40 -0
  30. data/_includes/comments-providers/staticman_v2.html +40 -0
  31. data/_includes/comments-providers/utterances.html +21 -0
  32. data/_includes/comments.html +180 -0
  33. data/_includes/documents-collection.html +15 -0
  34. data/_includes/feature_row +41 -0
  35. data/_includes/figure +9 -0
  36. data/_includes/footer/custom.html +3 -0
  37. data/_includes/footer.html +21 -0
  38. data/_includes/gallery +35 -0
  39. data/_includes/group-by-array +47 -0
  40. data/_includes/head/custom.html +15 -0
  41. data/_includes/head.html +25 -0
  42. data/_includes/masthead.html +35 -0
  43. data/_includes/nav_list +26 -0
  44. data/_includes/page__date.html +6 -0
  45. data/_includes/page__hero.html +55 -0
  46. data/_includes/page__hero_video.html +2 -0
  47. data/_includes/page__meta.html +31 -0
  48. data/_includes/page__taxonomy.html +7 -0
  49. data/_includes/paginator.html +69 -0
  50. data/_includes/post_pagination.html +14 -0
  51. data/_includes/posts-category.html +5 -0
  52. data/_includes/posts-tag.html +5 -0
  53. data/_includes/scripts.html +28 -0
  54. data/_includes/search/algolia-search-scripts.html +62 -0
  55. data/_includes/search/google-search-scripts.html +30 -0
  56. data/_includes/search/lunr-search-scripts.html +10 -0
  57. data/_includes/search/search_form.html +26 -0
  58. data/_includes/seo.html +158 -0
  59. data/_includes/sidebar.html +19 -0
  60. data/_includes/skip-links.html +7 -0
  61. data/_includes/social-share.html +11 -0
  62. data/_includes/tag-list.html +19 -0
  63. data/_includes/toc +7 -0
  64. data/_includes/toc.html +182 -0
  65. data/_includes/video +24 -0
  66. data/_layouts/archive-taxonomy.html +29 -0
  67. data/_layouts/archive.html +26 -0
  68. data/_layouts/categories.html +43 -0
  69. data/_layouts/category.html +10 -0
  70. data/_layouts/collection.html +10 -0
  71. data/_layouts/compress.html +10 -0
  72. data/_layouts/default.html +41 -0
  73. data/_layouts/home.html +22 -0
  74. data/_layouts/posts.html +30 -0
  75. data/_layouts/search.html +42 -0
  76. data/_layouts/single.html +95 -0
  77. data/_layouts/splash.html +22 -0
  78. data/_layouts/tag.html +10 -0
  79. data/_layouts/tags.html +43 -0
  80. data/_pages/404.html +26 -0
  81. data/_sass/minimal-mistakes/_animations.scss +21 -0
  82. data/_sass/minimal-mistakes/_archive.scss +463 -0
  83. data/_sass/minimal-mistakes/_base.scss +339 -0
  84. data/_sass/minimal-mistakes/_buttons.scss +97 -0
  85. data/_sass/minimal-mistakes/_footer.scss +85 -0
  86. data/_sass/minimal-mistakes/_forms.scss +359 -0
  87. data/_sass/minimal-mistakes/_masthead.scss +93 -0
  88. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  89. data/_sass/minimal-mistakes/_navigation.scss +573 -0
  90. data/_sass/minimal-mistakes/_notices.scss +109 -0
  91. data/_sass/minimal-mistakes/_page.scss +578 -0
  92. data/_sass/minimal-mistakes/_print.scss +252 -0
  93. data/_sass/minimal-mistakes/_reset.scss +187 -0
  94. data/_sass/minimal-mistakes/_search.scss +132 -0
  95. data/_sass/minimal-mistakes/_sidebar.scss +353 -0
  96. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  97. data/_sass/minimal-mistakes/_tables.scss +39 -0
  98. data/_sass/minimal-mistakes/_utilities.scss +593 -0
  99. data/_sass/minimal-mistakes/_variables.scss +173 -0
  100. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  101. data/_sass/minimal-mistakes/skins/_aqua.scss +34 -0
  102. data/_sass/minimal-mistakes/skins/_contrast.scss +52 -0
  103. data/_sass/minimal-mistakes/skins/_dark.scss +30 -0
  104. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  105. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  106. data/_sass/minimal-mistakes/skins/_mint.scss +24 -0
  107. data/_sass/minimal-mistakes/skins/_neon.scss +63 -0
  108. data/_sass/minimal-mistakes/skins/_plum.scss +70 -0
  109. data/_sass/minimal-mistakes/skins/_sunrise.scss +49 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  125. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  126. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  127. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  128. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  129. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  130. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  131. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  132. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  133. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  137. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  138. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  139. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  140. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  146. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  147. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  148. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  149. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  150. data/_sass/minimal-mistakes.scss +40 -0
  151. data/assets/css/main.scss +9 -0
  152. data/assets/images/android-chrome-192x192.png +0 -0
  153. data/assets/images/android-chrome-512x512.png +0 -0
  154. data/assets/images/apple-touch-icon.png +0 -0
  155. data/assets/images/browserconfig.xml +9 -0
  156. data/assets/images/creek-logo.png +0 -0
  157. data/assets/images/favicon-16x16.png +0 -0
  158. data/assets/images/favicon-32x32.png +0 -0
  159. data/assets/images/favicon.ico +0 -0
  160. data/assets/images/mstile-150x150.png +0 -0
  161. data/assets/images/safari-pinned-tab.svg +48 -0
  162. data/assets/images/site-under-construction.png +0 -0
  163. data/assets/images/site.webmanifest +19 -0
  164. data/assets/js/_main.js +136 -0
  165. data/assets/js/lunr/lunr-en.js +73 -0
  166. data/assets/js/lunr/lunr-gr.js +526 -0
  167. data/assets/js/lunr/lunr-store.js +84 -0
  168. data/assets/js/lunr/lunr.js +3475 -0
  169. data/assets/js/lunr/lunr.min.js +6 -0
  170. data/assets/js/main.min.js +6 -0
  171. data/assets/js/plugins/gumshoe.js +484 -0
  172. data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
  173. data/assets/js/plugins/jquery.fitvids.js +82 -0
  174. data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
  175. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  176. data/assets/js/plugins/smooth-scroll.js +650 -0
  177. data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
  178. metadata +233 -0
data/_pages/404.html ADDED
@@ -0,0 +1,26 @@
1
+ ---
2
+ permalink: /404.html
3
+ layout: default
4
+ ---
5
+
6
+ <style type="text/css" media="screen">
7
+ .container {
8
+ margin: 10px auto;
9
+ max-width: 600px;
10
+ text-align: center;
11
+ }
12
+ h1 {
13
+ margin: 30px 0;
14
+ font-size: 4em;
15
+ line-height: 1;
16
+ letter-spacing: -1px;
17
+ }
18
+ </style>
19
+
20
+ <div class="container">
21
+ <h1>404</h1>
22
+
23
+ <p><strong>This is not the page you are looking for...</strong></p>
24
+ <p>The requested page could not be found.</p>
25
+ <p>Please check your URL or head to the <a href="https://creek-service.github.io">landing page</a></p>
26
+ </div>
@@ -0,0 +1,21 @@
1
+ /* ==========================================================================
2
+ ANIMATIONS
3
+ ========================================================================== */
4
+
5
+ @-webkit-keyframes intro {
6
+ 0% {
7
+ opacity: 0;
8
+ }
9
+ 100% {
10
+ opacity: 1;
11
+ }
12
+ }
13
+
14
+ @keyframes intro {
15
+ 0% {
16
+ opacity: 0;
17
+ }
18
+ 100% {
19
+ opacity: 1;
20
+ }
21
+ }
@@ -0,0 +1,463 @@
1
+ /* ==========================================================================
2
+ ARCHIVE
3
+ ========================================================================== */
4
+
5
+ .archive {
6
+ margin-top: 1em;
7
+ margin-bottom: 2em;
8
+
9
+ @include breakpoint($large) {
10
+ float: right;
11
+ width: calc(100% - #{$right-sidebar-width-narrow});
12
+ padding-right: $right-sidebar-width-narrow;
13
+ }
14
+
15
+ @include breakpoint($x-large) {
16
+ width: calc(100% - #{$right-sidebar-width});
17
+ padding-right: $right-sidebar-width;
18
+ }
19
+ }
20
+
21
+ .archive__item {
22
+ position: relative;
23
+
24
+ a {
25
+ position: relative;
26
+ z-index: 10;
27
+ }
28
+
29
+ a[rel="permalink"] {
30
+ position: static;
31
+ }
32
+ }
33
+
34
+ .archive__subtitle {
35
+ margin: 1.414em 0 0.5em;
36
+ padding-bottom: 0.5em;
37
+ font-size: $type-size-5;
38
+ color: $muted-text-color;
39
+ border-bottom: 1px solid $border-color;
40
+
41
+ + .list__item .archive__item-title {
42
+ margin-top: 0.5em;
43
+ }
44
+ }
45
+
46
+ .archive__item-title {
47
+ margin-bottom: 0.25em;
48
+ font-family: $sans-serif-narrow;
49
+ line-height: initial;
50
+ overflow: hidden;
51
+ text-overflow: ellipsis;
52
+
53
+ a[rel="permalink"]::before {
54
+ content: '';
55
+ position: absolute;
56
+ left: 0;
57
+ top: 0;
58
+ right: 0;
59
+ bottom: 0;
60
+ }
61
+
62
+ a + a {
63
+ opacity: 0.5;
64
+ }
65
+ }
66
+
67
+ /* remove border*/
68
+ .page__content {
69
+ .archive__item-title {
70
+ margin-top: 1em;
71
+ border-bottom: none;
72
+ }
73
+ }
74
+
75
+ .archive__item-excerpt {
76
+ margin-top: 0;
77
+ font-size: $type-size-6;
78
+
79
+ & + p {
80
+ text-indent: 0;
81
+ }
82
+
83
+ a {
84
+ position: relative;
85
+ }
86
+ }
87
+
88
+ .archive__item-teaser {
89
+ position: relative;
90
+ border-radius: $border-radius;
91
+ overflow: hidden;
92
+
93
+ img {
94
+ width: 100%;
95
+ }
96
+ }
97
+
98
+ .archive__item-caption {
99
+ position: absolute;
100
+ bottom: 0;
101
+ right: 0;
102
+ margin: 0 auto;
103
+ padding: 2px 5px;
104
+ color: #fff;
105
+ font-family: $caption-font-family;
106
+ font-size: $type-size-8;
107
+ background: #000;
108
+ text-align: right;
109
+ z-index: 5;
110
+ opacity: 0.5;
111
+ border-radius: $border-radius 0 0 0;
112
+
113
+ @include breakpoint($large) {
114
+ padding: 5px 10px;
115
+ }
116
+
117
+ a {
118
+ color: #fff;
119
+ text-decoration: none;
120
+ }
121
+ }
122
+
123
+ /*
124
+ List view
125
+ ========================================================================== */
126
+
127
+ .list__item {
128
+ .page__meta {
129
+ margin: 0 0 4px;
130
+ font-size: 0.6em;
131
+ }
132
+ }
133
+
134
+ /*
135
+ Grid view
136
+ ========================================================================== */
137
+
138
+ .archive {
139
+ .grid__wrapper {
140
+ /* extend grid elements to the right */
141
+
142
+ @include breakpoint($large) {
143
+ margin-right: -1 * $right-sidebar-width-narrow;
144
+ }
145
+
146
+ @include breakpoint($x-large) {
147
+ margin-right: -1 * $right-sidebar-width;
148
+ }
149
+ }
150
+ }
151
+
152
+ .grid__item {
153
+ margin-bottom: 2em;
154
+
155
+ @include breakpoint($small) {
156
+ float: left;
157
+ width: span(5 of 10);
158
+
159
+ &:nth-child(2n + 1) {
160
+ clear: both;
161
+ margin-left: 0;
162
+ }
163
+
164
+ &:nth-child(2n + 2) {
165
+ clear: none;
166
+ margin-left: gutter(of 10);
167
+ }
168
+ }
169
+
170
+ @include breakpoint($medium) {
171
+ margin-left: 0; /* override margin*/
172
+ margin-right: 0; /* override margin*/
173
+ width: span(3 of 12);
174
+
175
+ &:nth-child(2n + 1) {
176
+ clear: none;
177
+ }
178
+
179
+ &:nth-child(4n + 1) {
180
+ clear: both;
181
+ }
182
+
183
+ &:nth-child(4n + 2) {
184
+ clear: none;
185
+ margin-left: gutter(1 of 12);
186
+ }
187
+
188
+ &:nth-child(4n + 3) {
189
+ clear: none;
190
+ margin-left: gutter(1 of 12);
191
+ }
192
+
193
+ &:nth-child(4n + 4) {
194
+ clear: none;
195
+ margin-left: gutter(1 of 12);
196
+ }
197
+ }
198
+
199
+ .page__meta {
200
+ margin: 0 0 4px;
201
+ font-size: 0.6em;
202
+ }
203
+
204
+ .page__meta-sep {
205
+ display: block;
206
+
207
+ &::before {
208
+ display: none;
209
+ }
210
+ }
211
+
212
+ .archive__item-title {
213
+ margin-top: 0.5em;
214
+ font-size: $type-size-5;
215
+ }
216
+
217
+ .archive__item-excerpt {
218
+ display: none;
219
+
220
+ @include breakpoint($medium) {
221
+ display: block;
222
+ font-size: $type-size-6;
223
+ }
224
+ }
225
+
226
+ .archive__item-teaser {
227
+ @include breakpoint($small) {
228
+ max-height: 200px;
229
+ }
230
+
231
+ @include breakpoint($medium) {
232
+ max-height: 120px;
233
+ }
234
+ }
235
+ }
236
+
237
+ /*
238
+ Features
239
+ ========================================================================== */
240
+
241
+ .feature__wrapper {
242
+ @include clearfix();
243
+ margin-bottom: 2em;
244
+ border-bottom: 1px solid $border-color;
245
+
246
+ .archive__item-title {
247
+ margin-bottom: 0;
248
+ }
249
+ }
250
+
251
+ .feature__item {
252
+ position: relative;
253
+ margin-bottom: 2em;
254
+ font-size: 1.125em;
255
+
256
+ @include breakpoint($small) {
257
+ float: left;
258
+ margin-bottom: 0;
259
+ width: span(4 of 12);
260
+
261
+ &:nth-child(3n + 1) {
262
+ clear: both;
263
+ margin-left: 0;
264
+ }
265
+
266
+ &:nth-child(3n + 2) {
267
+ clear: none;
268
+ margin-left: gutter(of 12);
269
+ }
270
+
271
+ &:nth-child(3n + 3) {
272
+ clear: none;
273
+ margin-left: gutter(of 12);
274
+ }
275
+
276
+ .feature__item-teaser {
277
+ max-height: 200px;
278
+ overflow: hidden;
279
+ }
280
+ }
281
+
282
+ .archive__item-body {
283
+ padding-left: gutter(1 of 12);
284
+ padding-right: gutter(1 of 12);
285
+ }
286
+
287
+ a.btn::before {
288
+ content: '';
289
+ position: absolute;
290
+ left: 0;
291
+ top: 0;
292
+ right: 0;
293
+ bottom: 0;
294
+ }
295
+
296
+ &--left {
297
+ position: relative;
298
+ float: left;
299
+ margin-left: 0;
300
+ margin-right: 0;
301
+ width: 100%;
302
+ clear: both;
303
+ font-size: 1.125em;
304
+
305
+ .archive__item {
306
+ float: left;
307
+ }
308
+
309
+ .archive__item-teaser {
310
+ margin-bottom: 2em;
311
+ }
312
+
313
+ a.btn::before {
314
+ content: '';
315
+ position: absolute;
316
+ left: 0;
317
+ top: 0;
318
+ right: 0;
319
+ bottom: 0;
320
+ }
321
+
322
+ @include breakpoint($small) {
323
+ .archive__item-teaser {
324
+ float: left;
325
+ width: span(5 of 12);
326
+ }
327
+
328
+ .archive__item-body {
329
+ float: right;
330
+ padding-left: gutter(0.5 of 12);
331
+ padding-right: gutter(1 of 12);
332
+ width: span(7 of 12);
333
+ }
334
+ }
335
+ }
336
+
337
+ &--right {
338
+ position: relative;
339
+ float: left;
340
+ margin-left: 0;
341
+ margin-right: 0;
342
+ width: 100%;
343
+ clear: both;
344
+ font-size: 1.125em;
345
+
346
+ .archive__item {
347
+ float: left;
348
+ }
349
+
350
+ .archive__item-teaser {
351
+ margin-bottom: 2em;
352
+ }
353
+
354
+ a.btn::before {
355
+ content: '';
356
+ position: absolute;
357
+ left: 0;
358
+ top: 0;
359
+ right: 0;
360
+ bottom: 0;
361
+ }
362
+
363
+ @include breakpoint($small) {
364
+ text-align: right;
365
+
366
+ .archive__item-teaser {
367
+ float: right;
368
+ width: span(5 of 12);
369
+ }
370
+
371
+ .archive__item-body {
372
+ float: left;
373
+ width: span(7 of 12);
374
+ padding-left: gutter(0.5 of 12);
375
+ padding-right: gutter(1 of 12);
376
+ }
377
+ }
378
+ }
379
+
380
+ &--center {
381
+ position: relative;
382
+ float: left;
383
+ margin-left: 0;
384
+ margin-right: 0;
385
+ width: 100%;
386
+ clear: both;
387
+ font-size: 1.125em;
388
+
389
+ .archive__item {
390
+ float: left;
391
+ width: 100%;
392
+ }
393
+
394
+ .archive__item-teaser {
395
+ margin-bottom: 2em;
396
+ }
397
+
398
+ a.btn::before {
399
+ content: '';
400
+ position: absolute;
401
+ left: 0;
402
+ top: 0;
403
+ right: 0;
404
+ bottom: 0;
405
+ }
406
+
407
+ @include breakpoint($small) {
408
+ text-align: center;
409
+
410
+ .archive__item-teaser {
411
+ margin: 0 auto;
412
+ width: span(5 of 12);
413
+ }
414
+
415
+ .archive__item-body {
416
+ margin: 0 auto;
417
+ width: span(7 of 12);
418
+ }
419
+ }
420
+ }
421
+ }
422
+
423
+ /* Place inside an archive layout */
424
+
425
+ .archive {
426
+ .feature__wrapper {
427
+ .archive__item-title {
428
+ margin-top: 0.25em;
429
+ font-size: 1em;
430
+ }
431
+ }
432
+
433
+ .feature__item,
434
+ .feature__item--left,
435
+ .feature__item--center,
436
+ .feature__item--right {
437
+ font-size: 1em;
438
+ }
439
+ }
440
+
441
+ /*
442
+ Wide Pages
443
+ ========================================================================== */
444
+
445
+ .wide {
446
+ .archive {
447
+ @include breakpoint($large) {
448
+ padding-right: 0;
449
+ }
450
+
451
+ @include breakpoint($x-large) {
452
+ padding-right: 0;
453
+ }
454
+ }
455
+ }
456
+
457
+ /* Place inside a single layout */
458
+
459
+ .layout--single {
460
+ .feature__wrapper {
461
+ display: inline-block;
462
+ }
463
+ }