benimal-mistakes-jekyll 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +1095 -0
  3. data/LICENSE.txt +63 -0
  4. data/README.md +245 -0
  5. data/_data/navigation.yml +12 -0
  6. data/_data/ui-text.yml +1079 -0
  7. data/_includes/analytics-providers/custom.html +3 -0
  8. data/_includes/analytics-providers/google-gtag.html +9 -0
  9. data/_includes/analytics-providers/google-universal.html +10 -0
  10. data/_includes/analytics-providers/google.html +14 -0
  11. data/_includes/analytics.html +14 -0
  12. data/_includes/archive-single.html +38 -0
  13. data/_includes/author-profile-custom-links.html +7 -0
  14. data/_includes/author-profile.html +263 -0
  15. data/_includes/base_path +5 -0
  16. data/_includes/breadcrumbs.html +39 -0
  17. data/_includes/browser-upgrade.html +3 -0
  18. data/_includes/category-list.html +26 -0
  19. data/_includes/comment.html +22 -0
  20. data/_includes/comments-providers/custom.html +3 -0
  21. data/_includes/comments-providers/discourse.html +13 -0
  22. data/_includes/comments-providers/disqus.html +15 -0
  23. data/_includes/comments-providers/facebook.html +8 -0
  24. data/_includes/comments-providers/google-plus.html +2 -0
  25. data/_includes/comments-providers/scripts.html +18 -0
  26. data/_includes/comments-providers/staticman.html +42 -0
  27. data/_includes/comments-providers/staticman_v2.html +42 -0
  28. data/_includes/comments.html +171 -0
  29. data/_includes/documents-collection.html +19 -0
  30. data/_includes/feature_row +53 -0
  31. data/_includes/figure +12 -0
  32. data/_includes/footer.html +25 -0
  33. data/_includes/footer/custom.html +3 -0
  34. data/_includes/gallery +47 -0
  35. data/_includes/group-by-array +47 -0
  36. data/_includes/head.html +43 -0
  37. data/_includes/head/custom.html +5 -0
  38. data/_includes/masthead.html +33 -0
  39. data/_includes/nav_list +47 -0
  40. data/_includes/page__hero.html +61 -0
  41. data/_includes/page__hero_video.html +4 -0
  42. data/_includes/page__taxonomy.html +7 -0
  43. data/_includes/paginator.html +69 -0
  44. data/_includes/post_pagination.html +14 -0
  45. data/_includes/posts-category.html +3 -0
  46. data/_includes/posts-tag.html +3 -0
  47. data/_includes/read-time.html +15 -0
  48. data/_includes/schedule.html +57 -0
  49. data/_includes/scripts.html +28 -0
  50. data/_includes/search/algolia-search-scripts.html +54 -0
  51. data/_includes/search/google-search-scripts.html +30 -0
  52. data/_includes/search/lunr-search-scripts.html +10 -0
  53. data/_includes/search/search_form.html +18 -0
  54. data/_includes/seo.html +164 -0
  55. data/_includes/sidebar.html +23 -0
  56. data/_includes/social-share.html +13 -0
  57. data/_includes/tag-list.html +26 -0
  58. data/_includes/toc +7 -0
  59. data/_includes/toc.html +75 -0
  60. data/_includes/two-day-schedule.html +71 -0
  61. data/_includes/video +11 -0
  62. data/_layouts/archive-taxonomy.html +15 -0
  63. data/_layouts/archive.html +26 -0
  64. data/_layouts/categories.html +42 -0
  65. data/_layouts/category.html +9 -0
  66. data/_layouts/collection.html +9 -0
  67. data/_layouts/compress.html +10 -0
  68. data/_layouts/default.html +42 -0
  69. data/_layouts/home.html +11 -0
  70. data/_layouts/posts.html +29 -0
  71. data/_layouts/search.html +42 -0
  72. data/_layouts/single.html +92 -0
  73. data/_layouts/splash.html +22 -0
  74. data/_layouts/tag.html +9 -0
  75. data/_layouts/tags.html +42 -0
  76. data/_sass/minimal-mistakes.scss +40 -0
  77. data/_sass/minimal-mistakes/_animations.scss +21 -0
  78. data/_sass/minimal-mistakes/_archive.scss +362 -0
  79. data/_sass/minimal-mistakes/_base.scss +358 -0
  80. data/_sass/minimal-mistakes/_buttons.scss +98 -0
  81. data/_sass/minimal-mistakes/_footer.scss +91 -0
  82. data/_sass/minimal-mistakes/_forms.scss +393 -0
  83. data/_sass/minimal-mistakes/_masthead.scss +83 -0
  84. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  85. data/_sass/minimal-mistakes/_navigation.scss +544 -0
  86. data/_sass/minimal-mistakes/_notices.scss +100 -0
  87. data/_sass/minimal-mistakes/_page.scss +520 -0
  88. data/_sass/minimal-mistakes/_print.scss +252 -0
  89. data/_sass/minimal-mistakes/_reset.scss +187 -0
  90. data/_sass/minimal-mistakes/_search.scss +125 -0
  91. data/_sass/minimal-mistakes/_sidebar.scss +310 -0
  92. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  93. data/_sass/minimal-mistakes/_tables.scss +37 -0
  94. data/_sass/minimal-mistakes/_utilities.scss +524 -0
  95. data/_sass/minimal-mistakes/_variables.scss +154 -0
  96. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  97. data/_sass/minimal-mistakes/skins/_aqua.scss +30 -0
  98. data/_sass/minimal-mistakes/skins/_contrast.scss +51 -0
  99. data/_sass/minimal-mistakes/skins/_dark.scss +42 -0
  100. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  101. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  102. data/_sass/minimal-mistakes/skins/_mint.scss +23 -0
  103. data/_sass/minimal-mistakes/skins/_neon.scss +53 -0
  104. data/_sass/minimal-mistakes/skins/_plum.scss +60 -0
  105. data/_sass/minimal-mistakes/skins/_sunrise.scss +44 -0
  106. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  107. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  108. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  109. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  125. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  126. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  127. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  128. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  129. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  130. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  131. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  132. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  133. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  137. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  138. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  139. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  140. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  146. data/assets/css/main.scss +8 -0
  147. data/assets/js/_main.js +106 -0
  148. data/assets/js/lunr/lunr-en.js +75 -0
  149. data/assets/js/lunr/lunr-gr.js +528 -0
  150. data/assets/js/lunr/lunr-store.js +52 -0
  151. data/assets/js/lunr/lunr.js +2977 -0
  152. data/assets/js/lunr/lunr.min.js +6 -0
  153. data/assets/js/main.min.js +9 -0
  154. data/assets/js/plugins/jquery.fitvids.js +82 -0
  155. data/assets/js/plugins/jquery.greedy-navigation.js +83 -0
  156. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  157. data/assets/js/plugins/jquery.smooth-scroll.min.js +9 -0
  158. data/assets/js/vendor/jquery/jquery-3.3.1.min.js +2 -0
  159. metadata +327 -0
@@ -0,0 +1,252 @@
1
+ /* ==========================================================================
2
+ PRINT STYLES
3
+ ========================================================================== */
4
+
5
+ @media print {
6
+
7
+ [hidden] {
8
+ display: none;
9
+ }
10
+
11
+ * {
12
+ -moz-box-sizing: border-box;
13
+ -webkit-box-sizing: border-box;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ html {
18
+ margin: 0;
19
+ padding: 0;
20
+ min-height: auto !important;
21
+ font-size: 16px;
22
+ }
23
+
24
+ body {
25
+ margin: 0 auto;
26
+ background: #fff !important;
27
+ color: #000 !important;
28
+ font-size: 1rem;
29
+ line-height: 1.5;
30
+ -moz-osx-font-smoothing: grayscale;
31
+ -webkit-font-smoothing: antialiased;
32
+ text-rendering: optimizeLegibility;
33
+ }
34
+
35
+ h1,
36
+ h2,
37
+ h3,
38
+ h4,
39
+ h5,
40
+ h6 {
41
+ color: #000;
42
+ line-height: 1.2;
43
+ margin-bottom: 0.75rem;
44
+ margin-top: 0;
45
+ }
46
+
47
+ h1 {
48
+ font-size: 2.5rem;
49
+ }
50
+
51
+ h2 {
52
+ font-size: 2rem;
53
+ }
54
+
55
+ h3 {
56
+ font-size: 1.75rem;
57
+ }
58
+
59
+ h4 {
60
+ font-size: 1.5rem;
61
+ }
62
+
63
+ h5 {
64
+ font-size: 1.25rem;
65
+ }
66
+
67
+ h6 {
68
+ font-size: 1rem;
69
+ }
70
+
71
+ a,
72
+ a:visited {
73
+ color: #000;
74
+ text-decoration: underline;
75
+ word-wrap: break-word;
76
+ }
77
+
78
+ table {
79
+ border-collapse: collapse;
80
+ }
81
+
82
+ thead {
83
+ display: table-header-group;
84
+ }
85
+
86
+ table,
87
+ th,
88
+ td {
89
+ border-bottom: 1px solid #000;
90
+ }
91
+
92
+ td,
93
+ th {
94
+ padding: 8px 16px;
95
+ }
96
+
97
+ img {
98
+ border: 0;
99
+ display: block;
100
+ max-width: 100% !important;
101
+ vertical-align: middle;
102
+ }
103
+
104
+ hr {
105
+ border: 0;
106
+ border-bottom: 2px solid #bbb;
107
+ height: 0;
108
+ margin: 2.25rem 0;
109
+ padding: 0;
110
+ }
111
+
112
+ dt {
113
+ font-weight: bold;
114
+ }
115
+
116
+ dd {
117
+ margin: 0;
118
+ margin-bottom: 0.75rem;
119
+ }
120
+
121
+ abbr[title],
122
+ acronym[title] {
123
+ border: 0;
124
+ text-decoration: none;
125
+ }
126
+
127
+ table,
128
+ blockquote,
129
+ pre,
130
+ code,
131
+ figure,
132
+ li,
133
+ hr,
134
+ ul,
135
+ ol,
136
+ a,
137
+ tr {
138
+ page-break-inside: avoid;
139
+ }
140
+
141
+ h2,
142
+ h3,
143
+ h4,
144
+ p,
145
+ a {
146
+ orphans: 3;
147
+ widows: 3;
148
+ }
149
+
150
+ h1,
151
+ h2,
152
+ h3,
153
+ h4,
154
+ h5,
155
+ h6 {
156
+ page-break-after: avoid;
157
+ page-break-inside: avoid;
158
+ }
159
+
160
+ h1 + p,
161
+ h2 + p,
162
+ h3 + p {
163
+ page-break-before: avoid;
164
+ }
165
+
166
+ img {
167
+ page-break-after: auto;
168
+ page-break-before: auto;
169
+ page-break-inside: avoid;
170
+ }
171
+
172
+ pre {
173
+ white-space: pre-wrap !important;
174
+ word-wrap: break-word;
175
+ }
176
+
177
+ a[href^='http://']:after,
178
+ a[href^='https://']:after,
179
+ a[href^='ftp://']:after {
180
+ content: " (" attr(href) ")";
181
+ font-size: 80%;
182
+ }
183
+
184
+ abbr[title]:after,
185
+ acronym[title]:after {
186
+ content: " (" attr(title) ")";
187
+ }
188
+
189
+ #main {
190
+ max-width: 100%;
191
+ }
192
+
193
+ .page {
194
+ margin: 0;
195
+ padding: 0;
196
+ width: 100%;
197
+ }
198
+
199
+ .page-break,
200
+ .page-break-before {
201
+ page-break-before: always;
202
+ }
203
+
204
+ .page-break-after {
205
+ page-break-after: always;
206
+ }
207
+
208
+ .no-print {
209
+ display: none;
210
+ }
211
+
212
+ a.no-reformat:after {
213
+ content: '';
214
+ }
215
+
216
+ abbr[title].no-reformat:after,
217
+ acronym[title].no-reformat:after {
218
+ content: '';
219
+ }
220
+
221
+ .page__hero-caption {
222
+ color: #000 !important;
223
+ background: #fff !important;
224
+ opacity: 1;
225
+
226
+ a {
227
+ color: #000 !important;
228
+ }
229
+ }
230
+
231
+ /*
232
+ Hide the following elements on print
233
+ ========================================================================== */
234
+
235
+ .masthead,
236
+ .toc,
237
+ .page__share,
238
+ .page__related,
239
+ .pagination,
240
+ .ads,
241
+ .page__footer,
242
+ .page__comments-form,
243
+ .author__avatar,
244
+ .author__content,
245
+ .author__urls-wrapper,
246
+ .nav__list,
247
+ .sidebar,
248
+ .adsbygoogle {
249
+ display: none !important;
250
+ height: 1px !important;
251
+ }
252
+ }
@@ -0,0 +1,187 @@
1
+ /* ==========================================================================
2
+ STYLE RESETS
3
+ ========================================================================== */
4
+
5
+ * { box-sizing: border-box; }
6
+
7
+ html {
8
+ /* apply a natural box layout model to all elements */
9
+ box-sizing: border-box;
10
+ background-color: $background-color;
11
+ font-size: 16px;
12
+
13
+ @include breakpoint($medium) {
14
+ font-size: 18px;
15
+ }
16
+
17
+ @include breakpoint($large) {
18
+ font-size: 20px;
19
+ }
20
+
21
+ @include breakpoint($x-large) {
22
+ font-size: 22px;
23
+ }
24
+
25
+ -webkit-text-size-adjust: 100%;
26
+ -ms-text-size-adjust: 100%;
27
+ }
28
+
29
+ /* Remove margin */
30
+
31
+ body { margin: 0; }
32
+
33
+ /* Selected elements */
34
+
35
+ ::-moz-selection {
36
+ color: #fff;
37
+ background: #000;
38
+ }
39
+
40
+ ::selection {
41
+ color: #fff;
42
+ background: #000;
43
+ }
44
+
45
+ /* Display HTML5 elements in IE6-9 and FF3 */
46
+
47
+ article,
48
+ aside,
49
+ details,
50
+ figcaption,
51
+ figure,
52
+ footer,
53
+ header,
54
+ hgroup,
55
+ main,
56
+ nav,
57
+ section {
58
+ display: block;
59
+ }
60
+
61
+ /* Display block in IE6-9 and FF3 */
62
+
63
+ audio,
64
+ canvas,
65
+ video {
66
+ display: inline-block;
67
+ *display: inline;
68
+ *zoom: 1;
69
+ }
70
+
71
+ /* Prevents modern browsers from displaying 'audio' without controls */
72
+
73
+ audio:not([controls]) {
74
+ display: none;
75
+ }
76
+
77
+ a {
78
+ color: $link-color;
79
+ }
80
+
81
+ /* Apply focus state */
82
+
83
+ a:focus {
84
+ @extend %tab-focus;
85
+ }
86
+
87
+ /* Remove outline from links */
88
+
89
+ a:hover,
90
+ a:active {
91
+ outline: 0;
92
+ }
93
+
94
+ /* Prevent sub and sup affecting line-height in all browsers */
95
+
96
+ sub,
97
+ sup {
98
+ position: relative;
99
+ font-size: 75%;
100
+ line-height: 0;
101
+ vertical-align: baseline;
102
+ }
103
+
104
+ sup {
105
+ top: -0.5em;
106
+ }
107
+
108
+ sub {
109
+ bottom: -0.25em;
110
+ }
111
+
112
+ /* img border in anchor's and image quality */
113
+
114
+ img {
115
+ /* Responsive images (ensure images don't scale beyond their parents) */
116
+ max-width: 100%; /* part 1: Set a maximum relative to the parent*/
117
+ width: auto\9; /* IE7-8 need help adjusting responsive images*/
118
+ height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/
119
+
120
+ vertical-align: middle;
121
+ border: 0;
122
+ -ms-interpolation-mode: bicubic;
123
+ }
124
+
125
+ /* Prevent max-width from affecting Google Maps */
126
+
127
+ #map_canvas img,
128
+ .google-maps img {
129
+ max-width: none;
130
+ }
131
+
132
+ /* Consistent form font size in all browsers, margin changes, misc */
133
+
134
+ button,
135
+ input,
136
+ select,
137
+ textarea {
138
+ margin: 0;
139
+ font-size: 100%;
140
+ vertical-align: middle;
141
+ }
142
+
143
+ button,
144
+ input {
145
+ *overflow: visible; /* inner spacing ie IE6/7*/
146
+ line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/
147
+ }
148
+
149
+ button::-moz-focus-inner,
150
+ input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/
151
+ padding: 0;
152
+ border: 0;
153
+ }
154
+
155
+ button,
156
+ html input[type="button"], // avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls
157
+ input[type="reset"],
158
+ input[type="submit"] {
159
+ -webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/
160
+ cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
161
+ }
162
+
163
+ label,
164
+ select,
165
+ button,
166
+ input[type="button"],
167
+ input[type="reset"],
168
+ input[type="submit"],
169
+ input[type="radio"],
170
+ input[type="checkbox"] {
171
+ cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
172
+ }
173
+
174
+ input[type="search"] { /* Appearance in Safari/Chrome*/
175
+ box-sizing: border-box;
176
+ -webkit-appearance: textfield;
177
+ }
178
+
179
+ input[type="search"]::-webkit-search-decoration,
180
+ input[type="search"]::-webkit-search-cancel-button {
181
+ -webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/
182
+ }
183
+
184
+ textarea {
185
+ overflow: auto; /* remove vertical scrollbar in IE6-9*/
186
+ vertical-align: top; /* readability and alignment cross-browser*/
187
+ }
@@ -0,0 +1,125 @@
1
+ /* ==========================================================================
2
+ SEARCH
3
+ ========================================================================== */
4
+
5
+ .layout--search {
6
+ .archive__item-teaser {
7
+ margin-bottom: 0.25em;
8
+ }
9
+ }
10
+
11
+ .search__toggle {
12
+ margin-left: 1rem;
13
+ margin-right: 1rem;
14
+ border: 0;
15
+ outline: none;
16
+ color: $muted-text-color;
17
+ background-color: transparent;
18
+ cursor: pointer;
19
+ -webkit-transition: 0.2s;
20
+ transition: 0.2s;
21
+
22
+ &:hover {
23
+ color: $text-color;
24
+ }
25
+ }
26
+
27
+ .search-icon {
28
+ width: 100%;
29
+ height: 100%;
30
+ }
31
+
32
+ .search-content {
33
+ display: none;
34
+ visibility: hidden;
35
+ padding-top: 1em;
36
+ padding-bottom: 1em;
37
+
38
+ &__inner-wrap {
39
+ width: 100%;
40
+ margin-left: auto;
41
+ margin-right: auto;
42
+ padding-left: 1em;
43
+ padding-right: 1em;
44
+ -webkit-animation: $intro-transition;
45
+ animation: $intro-transition;
46
+ -webkit-animation-delay: 0.15s;
47
+ animation-delay: 0.15s;
48
+
49
+ @include breakpoint($x-large) {
50
+ max-width: $x-large;
51
+ }
52
+ }
53
+
54
+ .search-input {
55
+ display: block;
56
+ margin-bottom: 0;
57
+ padding: 0;
58
+ border: none;
59
+ outline: none;
60
+ box-shadow: none;
61
+ background-color: transparent;
62
+ font-size: $type-size-3;
63
+
64
+ @include breakpoint($large) {
65
+ font-size: $type-size-2;
66
+ }
67
+
68
+ @include breakpoint($x-large) {
69
+ font-size: $type-size-1;
70
+ }
71
+ }
72
+
73
+ &.is--visible {
74
+ display: block;
75
+ visibility: visible;
76
+
77
+ &::after {
78
+ content: "";
79
+ display: block;
80
+ }
81
+ }
82
+
83
+ .results__found {
84
+ margin-top: 0.5em;
85
+ font-size: $type-size-6;
86
+ }
87
+
88
+ .archive__item {
89
+ margin-bottom: 2em;
90
+
91
+ @include breakpoint($large) {
92
+ width: 75%;
93
+ }
94
+
95
+ @include breakpoint($x-large) {
96
+ width: 50%;
97
+ }
98
+ }
99
+
100
+ .archive__item-title {
101
+ margin-top: 0;
102
+ }
103
+
104
+ .archive__item-excerpt {
105
+ margin-bottom: 0;
106
+ }
107
+ }
108
+
109
+ /* Algolia search */
110
+
111
+ .ais-search-box {
112
+ max-width: 100% !important;
113
+ margin-bottom: 2em;
114
+ }
115
+
116
+ .archive__item-title .ais-Highlight {
117
+ color: $link-color;
118
+ font-style: normal;
119
+ text-decoration: underline;
120
+ }
121
+ .archive__item-excerpt .ais-Highlight {
122
+ color: $link-color;
123
+ font-style: normal;
124
+ font-weight: bold;
125
+ }