minimal-mistakes-jekyll 4.14.0 → 4.14.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -1
  3. data/LICENSE +20 -20
  4. data/README.md +1 -1
  5. data/_data/ui-text.yml +1176 -1176
  6. data/_includes/analytics-providers/google-gtag.html +9 -9
  7. data/_includes/analytics-providers/google-universal.html +10 -10
  8. data/_includes/analytics-providers/google.html +13 -13
  9. data/_includes/analytics.html +13 -13
  10. data/_includes/author-profile-custom-links.html +6 -6
  11. data/_includes/author-profile.html +271 -271
  12. data/_includes/breadcrumbs.html +39 -39
  13. data/_includes/comments-providers/scripts.html +19 -19
  14. data/_includes/comments-providers/utterances.html +19 -19
  15. data/_includes/comments.html +174 -174
  16. data/_includes/footer.html +19 -19
  17. data/_includes/head.html +41 -41
  18. data/_includes/masthead.html +33 -33
  19. data/_includes/search/algolia-search-scripts.html +54 -54
  20. data/_includes/search/search_form.html +17 -17
  21. data/_includes/seo.html +164 -164
  22. data/_includes/video +13 -13
  23. data/_layouts/default.html +1 -1
  24. data/_layouts/home.html +13 -13
  25. data/_layouts/posts.html +29 -29
  26. data/_layouts/single.html +94 -94
  27. data/_layouts/splash.html +21 -21
  28. data/_layouts/tags.html +42 -42
  29. data/_sass/minimal-mistakes.scss +1 -1
  30. data/_sass/minimal-mistakes/_archive.scss +437 -437
  31. data/_sass/minimal-mistakes/_base.scss +357 -357
  32. data/_sass/minimal-mistakes/_footer.scss +91 -91
  33. data/_sass/minimal-mistakes/_mixins.scss +91 -91
  34. data/_sass/minimal-mistakes/_navigation.scss +556 -556
  35. data/_sass/minimal-mistakes/_search.scss +126 -126
  36. data/_sass/minimal-mistakes/_sidebar.scss +318 -318
  37. data/_sass/minimal-mistakes/_utilities.scss +6 -0
  38. data/_sass/minimal-mistakes/_variables.scss +159 -159
  39. data/_sass/minimal-mistakes/skins/_dark.scss +27 -27
  40. data/_sass/minimal-mistakes/skins/_neon.scss +56 -56
  41. data/_sass/minimal-mistakes/skins/_plum.scss +63 -63
  42. data/assets/js/_main.js +106 -106
  43. data/assets/js/lunr/lunr-store.js +54 -54
  44. data/assets/js/lunr/lunr.js +3483 -3483
  45. data/assets/js/lunr/lunr.min.js +5 -5
  46. data/assets/js/main.min.js +5 -5
  47. metadata +2 -2
@@ -1,357 +1,357 @@
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: $type-size-3;
39
- }
40
-
41
- h2 {
42
- font-size: $type-size-4;
43
- }
44
-
45
- h3 {
46
- font-size: $type-size-5;
47
- }
48
-
49
- h4 {
50
- font-size: $type-size-6;
51
- }
52
-
53
- h5 {
54
- font-size: $type-size-6;
55
- }
56
-
57
- h6 {
58
- font-size: $type-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
- p > code,
164
- a > code,
165
- li > code,
166
- figcaption > code,
167
- td > code {
168
- padding-top: 0.1rem;
169
- padding-bottom: 0.1rem;
170
- font-size: 0.8em;
171
- background: $code-background-color;
172
- border-radius: $border-radius;
173
-
174
- &:before,
175
- &:after {
176
- letter-spacing: -0.2em;
177
- content: "\00a0"; /* non-breaking space*/
178
- }
179
- }
180
-
181
- /* horizontal rule */
182
-
183
- hr {
184
- display: block;
185
- margin: 1em 0;
186
- border: 0;
187
- border-top: 1px solid $border-color;
188
- }
189
-
190
- /* lists */
191
-
192
- ul li,
193
- ol li {
194
- margin-bottom: 0.5em;
195
- }
196
-
197
- li ul,
198
- li ol {
199
- margin-top: 0.5em;
200
- }
201
-
202
- /*
203
- Media and embeds
204
- ========================================================================== */
205
-
206
- /* Figures and images */
207
-
208
- figure {
209
- display: -webkit-box;
210
- display: flex;
211
- -webkit-box-pack: justify;
212
- justify-content: space-between;
213
- -webkit-box-align: start;
214
- align-items: flex-start;
215
- flex-wrap: wrap;
216
- margin: 2em 0;
217
-
218
- img,
219
- iframe,
220
- .fluid-width-video-wrapper {
221
- margin-bottom: 1em;
222
- }
223
-
224
- img {
225
- width: 100%;
226
- border-radius: $border-radius;
227
- -webkit-transition: $global-transition;
228
- transition: $global-transition;
229
- }
230
-
231
- > a {
232
- display: block;
233
- }
234
-
235
- &.half {
236
- > a,
237
- > img {
238
- @include breakpoint($small) {
239
- width: calc(50% - 0.5em);
240
- }
241
- }
242
-
243
- figcaption {
244
- width: 100%;
245
- }
246
- }
247
-
248
- &.third {
249
- > a,
250
- > img {
251
- @include breakpoint($small) {
252
- width: calc(33.3333% - 0.5em);
253
- }
254
- }
255
-
256
- figcaption {
257
- width: 100%;
258
- }
259
- }
260
- }
261
-
262
- /* Figure captions */
263
-
264
- figcaption {
265
- margin-bottom: 0.5em;
266
- color: $muted-text-color;
267
- font-family: $caption-font-family;
268
- font-size: $type-size-6;
269
-
270
- a {
271
- -webkit-transition: $global-transition;
272
- transition: $global-transition;
273
-
274
- &:hover {
275
- color: $link-color-hover;
276
- }
277
- }
278
- }
279
-
280
- /* Fix IE9 SVG bug */
281
-
282
- svg:not(:root) {
283
- overflow: hidden;
284
- }
285
-
286
- /*
287
- Navigation lists
288
- ========================================================================== */
289
-
290
- /**
291
- * Removes margins, padding, and bullet points from navigation lists
292
- *
293
- * Example usage:
294
- * <nav>
295
- * <ul>
296
- * <li><a href="#link-1">Link 1</a></li>
297
- * <li><a href="#link-2">Link 2</a></li>
298
- * <li><a href="#link-3">Link 3</a></li>
299
- * </ul>
300
- * </nav>
301
- */
302
-
303
- nav {
304
- ul {
305
- margin: 0;
306
- padding: 0;
307
- }
308
-
309
- li {
310
- list-style: none;
311
- }
312
-
313
- a {
314
- text-decoration: none;
315
- }
316
-
317
- /* override white-space for nested lists */
318
- ul li,
319
- ol li {
320
- margin-bottom: 0;
321
- }
322
-
323
- li ul,
324
- li ol {
325
- margin-top: 0;
326
- }
327
- }
328
-
329
- /*
330
- Global animation transition
331
- ========================================================================== */
332
-
333
- b,
334
- i,
335
- strong,
336
- em,
337
- blockquote,
338
- p,
339
- q,
340
- span,
341
- figure,
342
- img,
343
- h1,
344
- h2,
345
- header,
346
- input,
347
- a,
348
- tr,
349
- td,
350
- form button,
351
- input[type="submit"],
352
- .btn,
353
- .highlight,
354
- .archive__item-teaser {
355
- -webkit-transition: $global-transition;
356
- transition: $global-transition;
357
- }
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: $type-size-3;
39
+ }
40
+
41
+ h2 {
42
+ font-size: $type-size-4;
43
+ }
44
+
45
+ h3 {
46
+ font-size: $type-size-5;
47
+ }
48
+
49
+ h4 {
50
+ font-size: $type-size-6;
51
+ }
52
+
53
+ h5 {
54
+ font-size: $type-size-6;
55
+ }
56
+
57
+ h6 {
58
+ font-size: $type-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
+ p > code,
164
+ a > code,
165
+ li > code,
166
+ figcaption > code,
167
+ td > code {
168
+ padding-top: 0.1rem;
169
+ padding-bottom: 0.1rem;
170
+ font-size: 0.8em;
171
+ background: $code-background-color;
172
+ border-radius: $border-radius;
173
+
174
+ &:before,
175
+ &:after {
176
+ letter-spacing: -0.2em;
177
+ content: "\00a0"; /* non-breaking space*/
178
+ }
179
+ }
180
+
181
+ /* horizontal rule */
182
+
183
+ hr {
184
+ display: block;
185
+ margin: 1em 0;
186
+ border: 0;
187
+ border-top: 1px solid $border-color;
188
+ }
189
+
190
+ /* lists */
191
+
192
+ ul li,
193
+ ol li {
194
+ margin-bottom: 0.5em;
195
+ }
196
+
197
+ li ul,
198
+ li ol {
199
+ margin-top: 0.5em;
200
+ }
201
+
202
+ /*
203
+ Media and embeds
204
+ ========================================================================== */
205
+
206
+ /* Figures and images */
207
+
208
+ figure {
209
+ display: -webkit-box;
210
+ display: flex;
211
+ -webkit-box-pack: justify;
212
+ justify-content: space-between;
213
+ -webkit-box-align: start;
214
+ align-items: flex-start;
215
+ flex-wrap: wrap;
216
+ margin: 2em 0;
217
+
218
+ img,
219
+ iframe,
220
+ .fluid-width-video-wrapper {
221
+ margin-bottom: 1em;
222
+ }
223
+
224
+ img {
225
+ width: 100%;
226
+ border-radius: $border-radius;
227
+ -webkit-transition: $global-transition;
228
+ transition: $global-transition;
229
+ }
230
+
231
+ > a {
232
+ display: block;
233
+ }
234
+
235
+ &.half {
236
+ > a,
237
+ > img {
238
+ @include breakpoint($small) {
239
+ width: calc(50% - 0.5em);
240
+ }
241
+ }
242
+
243
+ figcaption {
244
+ width: 100%;
245
+ }
246
+ }
247
+
248
+ &.third {
249
+ > a,
250
+ > img {
251
+ @include breakpoint($small) {
252
+ width: calc(33.3333% - 0.5em);
253
+ }
254
+ }
255
+
256
+ figcaption {
257
+ width: 100%;
258
+ }
259
+ }
260
+ }
261
+
262
+ /* Figure captions */
263
+
264
+ figcaption {
265
+ margin-bottom: 0.5em;
266
+ color: $muted-text-color;
267
+ font-family: $caption-font-family;
268
+ font-size: $type-size-6;
269
+
270
+ a {
271
+ -webkit-transition: $global-transition;
272
+ transition: $global-transition;
273
+
274
+ &:hover {
275
+ color: $link-color-hover;
276
+ }
277
+ }
278
+ }
279
+
280
+ /* Fix IE9 SVG bug */
281
+
282
+ svg:not(:root) {
283
+ overflow: hidden;
284
+ }
285
+
286
+ /*
287
+ Navigation lists
288
+ ========================================================================== */
289
+
290
+ /**
291
+ * Removes margins, padding, and bullet points from navigation lists
292
+ *
293
+ * Example usage:
294
+ * <nav>
295
+ * <ul>
296
+ * <li><a href="#link-1">Link 1</a></li>
297
+ * <li><a href="#link-2">Link 2</a></li>
298
+ * <li><a href="#link-3">Link 3</a></li>
299
+ * </ul>
300
+ * </nav>
301
+ */
302
+
303
+ nav {
304
+ ul {
305
+ margin: 0;
306
+ padding: 0;
307
+ }
308
+
309
+ li {
310
+ list-style: none;
311
+ }
312
+
313
+ a {
314
+ text-decoration: none;
315
+ }
316
+
317
+ /* override white-space for nested lists */
318
+ ul li,
319
+ ol li {
320
+ margin-bottom: 0;
321
+ }
322
+
323
+ li ul,
324
+ li ol {
325
+ margin-top: 0;
326
+ }
327
+ }
328
+
329
+ /*
330
+ Global animation transition
331
+ ========================================================================== */
332
+
333
+ b,
334
+ i,
335
+ strong,
336
+ em,
337
+ blockquote,
338
+ p,
339
+ q,
340
+ span,
341
+ figure,
342
+ img,
343
+ h1,
344
+ h2,
345
+ header,
346
+ input,
347
+ a,
348
+ tr,
349
+ td,
350
+ form button,
351
+ input[type="submit"],
352
+ .btn,
353
+ .highlight,
354
+ .archive__item-teaser {
355
+ -webkit-transition: $global-transition;
356
+ transition: $global-transition;
357
+ }