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
@@ -0,0 +1,339 @@
1
+ /* ==========================================================================
2
+ BASE ELEMENTS
3
+ ========================================================================== */
4
+
5
+ html {
6
+ /* sticky footer fix */
7
+ position: relative;
8
+ min-height: 100%;
9
+ }
10
+
11
+ body {
12
+ margin: 0;
13
+ padding: 0;
14
+ color: $text-color;
15
+ font-family: $global-font-family;
16
+ line-height: 1.5;
17
+
18
+ &.overflow--hidden {
19
+ /* when primary navigation is visible, the content in the background won't scroll */
20
+ overflow: hidden;
21
+ }
22
+ }
23
+
24
+ h1,
25
+ h2,
26
+ h3,
27
+ h4,
28
+ h5,
29
+ h6 {
30
+ margin: 2em 0 0.5em;
31
+ line-height: 1.2;
32
+ font-family: $header-font-family;
33
+ font-weight: bold;
34
+ }
35
+
36
+ h1 {
37
+ margin-top: 0;
38
+ font-size: $h-size-1;
39
+ }
40
+
41
+ h2 {
42
+ font-size: $h-size-2;
43
+ }
44
+
45
+ h3 {
46
+ font-size: $h-size-3;
47
+ }
48
+
49
+ h4 {
50
+ font-size: $h-size-4;
51
+ }
52
+
53
+ h5 {
54
+ font-size: $h-size-5;
55
+ }
56
+
57
+ h6 {
58
+ font-size: $h-size-6;
59
+ }
60
+
61
+ small,
62
+ .small {
63
+ font-size: $type-size-6;
64
+ }
65
+
66
+ p {
67
+ margin-bottom: 1.3em;
68
+ }
69
+
70
+ u,
71
+ ins {
72
+ text-decoration: none;
73
+ border-bottom: 1px solid $text-color;
74
+ a {
75
+ color: inherit;
76
+ }
77
+ }
78
+
79
+ del a {
80
+ color: inherit;
81
+ }
82
+
83
+ /* reduce orphans and widows when printing */
84
+
85
+ p,
86
+ pre,
87
+ blockquote,
88
+ ul,
89
+ ol,
90
+ dl,
91
+ figure,
92
+ table,
93
+ fieldset {
94
+ orphans: 3;
95
+ widows: 3;
96
+ }
97
+
98
+ /* abbreviations */
99
+
100
+ abbr[title],
101
+ abbr[data-original-title] {
102
+ text-decoration: none;
103
+ cursor: help;
104
+ border-bottom: 1px dotted $text-color;
105
+ }
106
+
107
+ /* blockquotes */
108
+
109
+ blockquote {
110
+ margin: 2em 1em 2em 0;
111
+ padding-left: 1em;
112
+ padding-right: 1em;
113
+ font-style: italic;
114
+ border-left: 0.25em solid $primary-color;
115
+
116
+ cite {
117
+ font-style: italic;
118
+
119
+ &:before {
120
+ content: "\2014";
121
+ padding-right: 5px;
122
+ }
123
+ }
124
+ }
125
+
126
+ /* links */
127
+
128
+ a {
129
+ &:focus {
130
+ @extend %tab-focus;
131
+ }
132
+
133
+ &:visited {
134
+ color: $link-color-visited;
135
+ }
136
+
137
+ &:hover {
138
+ color: $link-color-hover;
139
+ outline: 0;
140
+ }
141
+ }
142
+
143
+ /* buttons */
144
+
145
+ button:focus {
146
+ @extend %tab-focus;
147
+ }
148
+
149
+ /* code */
150
+
151
+ tt,
152
+ code,
153
+ kbd,
154
+ samp,
155
+ pre {
156
+ font-family: $monospace;
157
+ }
158
+
159
+ pre {
160
+ overflow-x: auto; /* add scrollbars to wide code blocks*/
161
+ }
162
+
163
+ /* horizontal rule */
164
+
165
+ hr {
166
+ display: block;
167
+ margin: 1em 0;
168
+ border: 0;
169
+ border-top: 1px solid $border-color;
170
+ }
171
+
172
+ /* lists */
173
+
174
+ ul li,
175
+ ol li {
176
+ margin-bottom: 0.5em;
177
+ }
178
+
179
+ li ul,
180
+ li ol {
181
+ margin-top: 0.5em;
182
+ }
183
+
184
+ /*
185
+ Media and embeds
186
+ ========================================================================== */
187
+
188
+ /* Figures and images */
189
+
190
+ figure {
191
+ display: -webkit-box;
192
+ display: flex;
193
+ -webkit-box-pack: justify;
194
+ justify-content: space-between;
195
+ -webkit-box-align: start;
196
+ align-items: flex-start;
197
+ flex-wrap: wrap;
198
+ margin: 2em 0;
199
+
200
+ img,
201
+ iframe,
202
+ .fluid-width-video-wrapper {
203
+ margin-bottom: 1em;
204
+ }
205
+
206
+ img {
207
+ width: 100%;
208
+ border-radius: $border-radius;
209
+ -webkit-transition: $global-transition;
210
+ transition: $global-transition;
211
+ }
212
+
213
+ > a {
214
+ display: block;
215
+ }
216
+
217
+ &.half {
218
+ > a,
219
+ > img {
220
+ @include breakpoint($small) {
221
+ width: calc(50% - 0.5em);
222
+ }
223
+ }
224
+
225
+ figcaption {
226
+ width: 100%;
227
+ }
228
+ }
229
+
230
+ &.third {
231
+ > a,
232
+ > img {
233
+ @include breakpoint($small) {
234
+ width: calc(33.3333% - 0.5em);
235
+ }
236
+ }
237
+
238
+ figcaption {
239
+ width: 100%;
240
+ }
241
+ }
242
+ }
243
+
244
+ /* Figure captions */
245
+
246
+ figcaption {
247
+ margin-bottom: 0.5em;
248
+ color: $muted-text-color;
249
+ font-family: $caption-font-family;
250
+ font-size: $type-size-6;
251
+
252
+ a {
253
+ -webkit-transition: $global-transition;
254
+ transition: $global-transition;
255
+
256
+ &:hover {
257
+ color: $link-color-hover;
258
+ }
259
+ }
260
+ }
261
+
262
+ /* Fix IE9 SVG bug */
263
+
264
+ svg:not(:root) {
265
+ overflow: hidden;
266
+ }
267
+
268
+ /*
269
+ Navigation lists
270
+ ========================================================================== */
271
+
272
+ /**
273
+ * Removes margins, padding, and bullet points from navigation lists
274
+ *
275
+ * Example usage:
276
+ * <nav>
277
+ * <ul>
278
+ * <li><a href="#link-1">Link 1</a></li>
279
+ * <li><a href="#link-2">Link 2</a></li>
280
+ * <li><a href="#link-3">Link 3</a></li>
281
+ * </ul>
282
+ * </nav>
283
+ */
284
+
285
+ nav {
286
+ ul {
287
+ margin: 0;
288
+ padding: 0;
289
+ }
290
+
291
+ li {
292
+ list-style: none;
293
+ }
294
+
295
+ a {
296
+ text-decoration: none;
297
+ }
298
+
299
+ /* override white-space for nested lists */
300
+ ul li,
301
+ ol li {
302
+ margin-bottom: 0;
303
+ }
304
+
305
+ li ul,
306
+ li ol {
307
+ margin-top: 0;
308
+ }
309
+ }
310
+
311
+ /*
312
+ Global animation transition
313
+ ========================================================================== */
314
+
315
+ b,
316
+ i,
317
+ strong,
318
+ em,
319
+ blockquote,
320
+ p,
321
+ q,
322
+ span,
323
+ figure,
324
+ img,
325
+ h1,
326
+ h2,
327
+ header,
328
+ input,
329
+ a,
330
+ tr,
331
+ td,
332
+ form button,
333
+ input[type="submit"],
334
+ .btn,
335
+ .highlight,
336
+ .archive__item-teaser {
337
+ -webkit-transition: $global-transition;
338
+ transition: $global-transition;
339
+ }
@@ -0,0 +1,97 @@
1
+ /* ==========================================================================
2
+ BUTTONS
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Default button
7
+ ========================================================================== */
8
+
9
+ .btn {
10
+ /* default */
11
+ display: inline-block;
12
+ margin-bottom: 0.25em;
13
+ padding: 0.5em 1em;
14
+ font-family: $sans-serif;
15
+ font-size: $type-size-6;
16
+ font-weight: bold;
17
+ text-align: center;
18
+ text-decoration: none;
19
+ border-width: 0;
20
+ border-radius: $border-radius;
21
+ cursor: pointer;
22
+
23
+ .icon {
24
+ margin-right: 0.5em;
25
+ }
26
+
27
+ .icon + .hidden {
28
+ margin-left: -0.5em; /* override for hidden text*/
29
+ }
30
+
31
+ /* button colors */
32
+ $buttoncolors:
33
+ (primary, $primary-color),
34
+ (inverse, #fff),
35
+ (light-outline, transparent),
36
+ (success, $success-color),
37
+ (warning, $warning-color),
38
+ (danger, $danger-color),
39
+ (info, $info-color),
40
+ (facebook, $facebook-color),
41
+ (twitter, $twitter-color),
42
+ (linkedin, $linkedin-color);
43
+
44
+ @each $buttoncolor, $color in $buttoncolors {
45
+ &--#{$buttoncolor} {
46
+ @include yiq-contrasted($color);
47
+ @if ($buttoncolor == inverse) {
48
+ border: 1px solid $border-color;
49
+ }
50
+ @if ($buttoncolor == light-outline) {
51
+ border: 1px solid #fff;
52
+ }
53
+
54
+ &:visited {
55
+ @include yiq-contrasted($color);
56
+ }
57
+
58
+ &:hover {
59
+ @include yiq-contrasted(mix(#000, $color, 20%));
60
+ }
61
+ }
62
+ }
63
+
64
+ /* fills width of parent container */
65
+ &--block {
66
+ display: block;
67
+ width: 100%;
68
+
69
+ + .btn--block {
70
+ margin-top: 0.25em;
71
+ }
72
+ }
73
+
74
+ /* disabled */
75
+ &--disabled {
76
+ pointer-events: none;
77
+ cursor: not-allowed;
78
+ filter: alpha(opacity=65);
79
+ box-shadow: none;
80
+ opacity: 0.65;
81
+ }
82
+
83
+ /* extra large button */
84
+ &--x-large {
85
+ font-size: $type-size-4;
86
+ }
87
+
88
+ /* large button */
89
+ &--large {
90
+ font-size: $type-size-5;
91
+ }
92
+
93
+ /* small button */
94
+ &--small {
95
+ font-size: $type-size-7;
96
+ }
97
+ }
@@ -0,0 +1,85 @@
1
+ /* ==========================================================================
2
+ FOOTER
3
+ ========================================================================== */
4
+
5
+ .page__footer {
6
+ @include clearfix;
7
+ float: left;
8
+ margin-left: 0;
9
+ margin-right: 0;
10
+ width: 100%;
11
+ margin-top: 3em;
12
+ color: $muted-text-color;
13
+ -webkit-animation: $intro-transition;
14
+ animation: $intro-transition;
15
+ -webkit-animation-delay: 0.45s;
16
+ animation-delay: 0.45s;
17
+ background-color: $footer-background-color;
18
+
19
+ footer {
20
+ @include clearfix;
21
+ margin-left: auto;
22
+ margin-right: auto;
23
+ margin-top: 2em;
24
+ max-width: 100%;
25
+ padding: 0 1em 2em;
26
+
27
+ @include breakpoint($x-large) {
28
+ max-width: $x-large;
29
+ }
30
+ }
31
+
32
+ a {
33
+ color: inherit;
34
+ text-decoration: none;
35
+
36
+ &:hover {
37
+ text-decoration: underline;
38
+ }
39
+ }
40
+
41
+ .fas,
42
+ .fab,
43
+ .far,
44
+ .fal {
45
+ color: $muted-text-color;
46
+ }
47
+ }
48
+
49
+ .page__footer-copyright {
50
+ font-family: $global-font-family;
51
+ font-size: $type-size-7;
52
+ }
53
+
54
+ .page__footer-follow {
55
+ ul {
56
+ margin: 0;
57
+ padding: 0;
58
+ list-style-type: none;
59
+ }
60
+
61
+ li {
62
+ display: inline-block;
63
+ padding-top: 5px;
64
+ padding-bottom: 5px;
65
+ font-family: $sans-serif-narrow;
66
+ font-size: $type-size-6;
67
+ text-transform: uppercase;
68
+ }
69
+
70
+ li + li:before {
71
+ content: "";
72
+ padding-right: 5px;
73
+ }
74
+
75
+ a {
76
+ padding-right: 10px;
77
+ font-weight: bold;
78
+ }
79
+
80
+ .social-icons {
81
+ a {
82
+ white-space: nowrap;
83
+ }
84
+ }
85
+ }