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
@@ -372,6 +372,12 @@ body:hover .visually-hidden button {
372
372
  .navicon:after {
373
373
  background: mix(#000, $primary-color, 25%);
374
374
  }
375
+
376
+ &.close {
377
+ .navicon {
378
+ background: transparent;
379
+ }
380
+ }
375
381
  }
376
382
 
377
383
  /*
@@ -1,159 +1,159 @@
1
- /* ==========================================================================
2
- Variables
3
- ========================================================================== */
4
-
5
- /*
6
- Typography
7
- ========================================================================== */
8
-
9
- $doc-font-size: 16 !default;
10
-
11
- /* paragraph indention */
12
- $paragraph-indent: false !default; // true, false (default)
13
- $indent-var: 1.3em !default;
14
-
15
- /* system typefaces */
16
- $serif: Georgia, Times, serif !default;
17
- $sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI",
18
- "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
19
- $monospace: Monaco, Consolas, "Lucida Console", monospace !default;
20
-
21
- /* sans serif typefaces */
22
- $sans-serif-narrow: $sans-serif !default;
23
- $helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif !default;
24
-
25
- /* serif typefaces */
26
- $georgia: Georgia, serif !default;
27
- $times: Times, serif !default;
28
- $bodoni: "Bodoni MT", serif !default;
29
- $calisto: "Calisto MT", serif !default;
30
- $garamond: Garamond, serif !default;
31
-
32
- $global-font-family: $sans-serif !default;
33
- $header-font-family: $sans-serif !default;
34
- $caption-font-family: $serif !default;
35
-
36
- /* type scale */
37
- $type-size-1: 2.441em !default; // ~39.056px
38
- $type-size-2: 1.953em !default; // ~31.248px
39
- $type-size-3: 1.563em !default; // ~25.008px
40
- $type-size-4: 1.25em !default; // ~20px
41
- $type-size-5: 1em !default; // ~16px
42
- $type-size-6: 0.75em !default; // ~12px
43
- $type-size-7: 0.6875em !default; // ~11px
44
- $type-size-8: 0.625em !default; // ~10px
45
-
46
- /*
47
- Colors
48
- ========================================================================== */
49
-
50
- $gray: #7a8288 !default;
51
- $dark-gray: mix(#000, $gray, 40%) !default;
52
- $darker-gray: mix(#000, $gray, 60%) !default;
53
- $light-gray: mix(#fff, $gray, 50%) !default;
54
- $lighter-gray: mix(#fff, $gray, 90%) !default;
55
-
56
- $background-color: #fff !default;
57
- $code-background-color: #fafafa !default;
58
- $code-background-color-dark: $light-gray !default;
59
- $text-color: $dark-gray !default;
60
- $muted-text-color: mix(#fff, $text-color, 35%) !default;
61
- $border-color: $lighter-gray !default;
62
- $form-background-color: $lighter-gray !default;
63
- $footer-background-color: $lighter-gray !default;
64
-
65
- $primary-color: #6f777d !default;
66
- $success-color: #3fa63f !default;
67
- $warning-color: #d67f05 !default;
68
- $danger-color: #ee5f5b !default;
69
- $info-color: #3b9cba !default;
70
- $focus-color: $primary-color !default;
71
-
72
- /* YIQ color contrast */
73
- $yiq-contrasted-dark-default: $dark-gray !default;
74
- $yiq-contrasted-light-default: #fff !default;
75
- $yiq-contrasted-threshold: 175 !default;
76
- $yiq-debug: false !default;
77
-
78
- /* brands */
79
- $behance-color: #1769ff !default;
80
- $bitbucket-color: #205081 !default;
81
- $dribbble-color: #ea4c89 !default;
82
- $facebook-color: #3b5998 !default;
83
- $flickr-color: #ff0084 !default;
84
- $foursquare-color: #0072b1 !default;
85
- $github-color: #171516 !default;
86
- $gitlab-color: #e24329 !default;
87
- $google-plus-color: #dd4b39 !default;
88
- $instagram-color: #517fa4 !default;
89
- $lastfm-color: #d51007 !default;
90
- $linkedin-color: #007bb6 !default;
91
- $mastodon-color: #2b90d9 !default;
92
- $pinterest-color: #cb2027 !default;
93
- $reddit-color: #ff4500 !default;
94
- $rss-color: #fa9b39 !default;
95
- $soundcloud-color: #ff3300 !default;
96
- $stackoverflow-color: #fe7a15 !default;
97
- $tumblr-color: #32506d !default;
98
- $twitter-color: #55acee !default;
99
- $vimeo-color: #1ab7ea !default;
100
- $vine-color: #00bf8f !default;
101
- $youtube-color: #bb0000 !default;
102
- $xing-color: #006567 !default;
103
-
104
- /* links */
105
- $link-color: mix(#000, $info-color, 15%) !default;
106
- $link-color-hover: mix(#000, $link-color, 25%) !default;
107
- $link-color-visited: mix(#fff, $link-color, 15%) !default;
108
- $masthead-link-color: $primary-color !default;
109
- $masthead-link-color-hover: mix(#000, $primary-color, 25%) !default;
110
- $navicon-link-color-hover: mix(#fff, $primary-color, 75%) !default;
111
-
112
- /* syntax highlighting (base16) */
113
- $base00: #263238 !default;
114
- $base01: #2e3c43 !default;
115
- $base02: #314549 !default;
116
- $base03: #546e7a !default;
117
- $base04: #b2ccd6 !default;
118
- $base05: #eeffff !default;
119
- $base06: #eeffff !default;
120
- $base07: #ffffff !default;
121
- $base08: #f07178 !default;
122
- $base09: #f78c6c !default;
123
- $base0a: #ffcb6b !default;
124
- $base0b: #c3e88d !default;
125
- $base0c: #89ddff !default;
126
- $base0d: #82aaff !default;
127
- $base0e: #c792ea !default;
128
- $base0f: #ff5370 !default;
129
-
130
- /*
131
- Breakpoints
132
- ========================================================================== */
133
-
134
- $small: 600px !default;
135
- $medium: 768px !default;
136
- $medium-wide: 900px !default;
137
- $large: 1024px !default;
138
- $x-large: 1280px !default;
139
-
140
- /*
141
- Grid
142
- ========================================================================== */
143
-
144
- $right-sidebar-width-narrow: 200px !default;
145
- $right-sidebar-width: 300px !default;
146
- $right-sidebar-width-wide: 400px !default;
147
-
148
- /*
149
- Other
150
- ========================================================================== */
151
-
152
- $border-radius: 4px !default;
153
- $box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125) !default;
154
- $nav-height: 2em !default;
155
- $nav-toggle-height: 2rem !default;
156
- $navicon-width: 1.5rem !default;
157
- $navicon-height: 0.25rem !default;
158
- $global-transition: all 0.2s ease-in-out !default;
159
- $intro-transition: intro 0.3s both !default;
1
+ /* ==========================================================================
2
+ Variables
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Typography
7
+ ========================================================================== */
8
+
9
+ $doc-font-size: 16 !default;
10
+
11
+ /* paragraph indention */
12
+ $paragraph-indent: false !default; // true, false (default)
13
+ $indent-var: 1.3em !default;
14
+
15
+ /* system typefaces */
16
+ $serif: Georgia, Times, serif !default;
17
+ $sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI",
18
+ "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
19
+ $monospace: Monaco, Consolas, "Lucida Console", monospace !default;
20
+
21
+ /* sans serif typefaces */
22
+ $sans-serif-narrow: $sans-serif !default;
23
+ $helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif !default;
24
+
25
+ /* serif typefaces */
26
+ $georgia: Georgia, serif !default;
27
+ $times: Times, serif !default;
28
+ $bodoni: "Bodoni MT", serif !default;
29
+ $calisto: "Calisto MT", serif !default;
30
+ $garamond: Garamond, serif !default;
31
+
32
+ $global-font-family: $sans-serif !default;
33
+ $header-font-family: $sans-serif !default;
34
+ $caption-font-family: $serif !default;
35
+
36
+ /* type scale */
37
+ $type-size-1: 2.441em !default; // ~39.056px
38
+ $type-size-2: 1.953em !default; // ~31.248px
39
+ $type-size-3: 1.563em !default; // ~25.008px
40
+ $type-size-4: 1.25em !default; // ~20px
41
+ $type-size-5: 1em !default; // ~16px
42
+ $type-size-6: 0.75em !default; // ~12px
43
+ $type-size-7: 0.6875em !default; // ~11px
44
+ $type-size-8: 0.625em !default; // ~10px
45
+
46
+ /*
47
+ Colors
48
+ ========================================================================== */
49
+
50
+ $gray: #7a8288 !default;
51
+ $dark-gray: mix(#000, $gray, 40%) !default;
52
+ $darker-gray: mix(#000, $gray, 60%) !default;
53
+ $light-gray: mix(#fff, $gray, 50%) !default;
54
+ $lighter-gray: mix(#fff, $gray, 90%) !default;
55
+
56
+ $background-color: #fff !default;
57
+ $code-background-color: #fafafa !default;
58
+ $code-background-color-dark: $light-gray !default;
59
+ $text-color: $dark-gray !default;
60
+ $muted-text-color: mix(#fff, $text-color, 35%) !default;
61
+ $border-color: $lighter-gray !default;
62
+ $form-background-color: $lighter-gray !default;
63
+ $footer-background-color: $lighter-gray !default;
64
+
65
+ $primary-color: #6f777d !default;
66
+ $success-color: #3fa63f !default;
67
+ $warning-color: #d67f05 !default;
68
+ $danger-color: #ee5f5b !default;
69
+ $info-color: #3b9cba !default;
70
+ $focus-color: $primary-color !default;
71
+
72
+ /* YIQ color contrast */
73
+ $yiq-contrasted-dark-default: $dark-gray !default;
74
+ $yiq-contrasted-light-default: #fff !default;
75
+ $yiq-contrasted-threshold: 175 !default;
76
+ $yiq-debug: false !default;
77
+
78
+ /* brands */
79
+ $behance-color: #1769ff !default;
80
+ $bitbucket-color: #205081 !default;
81
+ $dribbble-color: #ea4c89 !default;
82
+ $facebook-color: #3b5998 !default;
83
+ $flickr-color: #ff0084 !default;
84
+ $foursquare-color: #0072b1 !default;
85
+ $github-color: #171516 !default;
86
+ $gitlab-color: #e24329 !default;
87
+ $google-plus-color: #dd4b39 !default;
88
+ $instagram-color: #517fa4 !default;
89
+ $lastfm-color: #d51007 !default;
90
+ $linkedin-color: #007bb6 !default;
91
+ $mastodon-color: #2b90d9 !default;
92
+ $pinterest-color: #cb2027 !default;
93
+ $reddit-color: #ff4500 !default;
94
+ $rss-color: #fa9b39 !default;
95
+ $soundcloud-color: #ff3300 !default;
96
+ $stackoverflow-color: #fe7a15 !default;
97
+ $tumblr-color: #32506d !default;
98
+ $twitter-color: #55acee !default;
99
+ $vimeo-color: #1ab7ea !default;
100
+ $vine-color: #00bf8f !default;
101
+ $youtube-color: #bb0000 !default;
102
+ $xing-color: #006567 !default;
103
+
104
+ /* links */
105
+ $link-color: mix(#000, $info-color, 15%) !default;
106
+ $link-color-hover: mix(#000, $link-color, 25%) !default;
107
+ $link-color-visited: mix(#fff, $link-color, 15%) !default;
108
+ $masthead-link-color: $primary-color !default;
109
+ $masthead-link-color-hover: mix(#000, $primary-color, 25%) !default;
110
+ $navicon-link-color-hover: mix(#fff, $primary-color, 75%) !default;
111
+
112
+ /* syntax highlighting (base16) */
113
+ $base00: #263238 !default;
114
+ $base01: #2e3c43 !default;
115
+ $base02: #314549 !default;
116
+ $base03: #546e7a !default;
117
+ $base04: #b2ccd6 !default;
118
+ $base05: #eeffff !default;
119
+ $base06: #eeffff !default;
120
+ $base07: #ffffff !default;
121
+ $base08: #f07178 !default;
122
+ $base09: #f78c6c !default;
123
+ $base0a: #ffcb6b !default;
124
+ $base0b: #c3e88d !default;
125
+ $base0c: #89ddff !default;
126
+ $base0d: #82aaff !default;
127
+ $base0e: #c792ea !default;
128
+ $base0f: #ff5370 !default;
129
+
130
+ /*
131
+ Breakpoints
132
+ ========================================================================== */
133
+
134
+ $small: 600px !default;
135
+ $medium: 768px !default;
136
+ $medium-wide: 900px !default;
137
+ $large: 1024px !default;
138
+ $x-large: 1280px !default;
139
+
140
+ /*
141
+ Grid
142
+ ========================================================================== */
143
+
144
+ $right-sidebar-width-narrow: 200px !default;
145
+ $right-sidebar-width: 300px !default;
146
+ $right-sidebar-width-wide: 400px !default;
147
+
148
+ /*
149
+ Other
150
+ ========================================================================== */
151
+
152
+ $border-radius: 4px !default;
153
+ $box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125) !default;
154
+ $nav-height: 2em !default;
155
+ $nav-toggle-height: 2rem !default;
156
+ $navicon-width: 1.5rem !default;
157
+ $navicon-height: 0.25rem !default;
158
+ $global-transition: all 0.2s ease-in-out !default;
159
+ $intro-transition: intro 0.3s both !default;
@@ -1,28 +1,28 @@
1
- /* ==========================================================================
2
- Dark skin
3
- ========================================================================== */
4
-
5
- /* Colors */
6
- $background-color: #252a34 !default;
7
- $text-color: #eaeaea !default;
8
- $primary-color: #00adb5 !default;
9
- $border-color: mix(#fff, $background-color, 20%) !default;
10
- $code-background-color: mix(#000, $background-color, 15%) !default;
11
- $code-background-color-dark: mix(#000, $background-color, 20%) !default;
12
- $form-background-color: mix(#000, $background-color, 15%) !default;
13
- $footer-background-color: mix(#000, $background-color, 30%) !default;
14
- $link-color: mix($primary-color, $text-color, 40%) !default;
15
- $link-color-hover: mix(#fff, $link-color, 25%) !default;
16
- $link-color-visited: mix(#000, $link-color, 25%) !default;
17
- $masthead-link-color: $text-color !default;
18
- $masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
19
- $navicon-link-color-hover: mix(#000, $background-color, 30%) !default;
20
-
21
- .author__urls.social-icons .svg-inline--fa,
22
- .page__footer-follow .social-icons .svg-inline--fa {
23
- color: inherit;
24
- }
25
-
26
- .ais-search-box .ais-search-box--input {
27
- background-color: $form-background-color;
1
+ /* ==========================================================================
2
+ Dark skin
3
+ ========================================================================== */
4
+
5
+ /* Colors */
6
+ $background-color: #252a34 !default;
7
+ $text-color: #eaeaea !default;
8
+ $primary-color: #00adb5 !default;
9
+ $border-color: mix(#fff, $background-color, 20%) !default;
10
+ $code-background-color: mix(#000, $background-color, 15%) !default;
11
+ $code-background-color-dark: mix(#000, $background-color, 20%) !default;
12
+ $form-background-color: mix(#000, $background-color, 15%) !default;
13
+ $footer-background-color: mix(#000, $background-color, 30%) !default;
14
+ $link-color: mix($primary-color, $text-color, 40%) !default;
15
+ $link-color-hover: mix(#fff, $link-color, 25%) !default;
16
+ $link-color-visited: mix(#000, $link-color, 25%) !default;
17
+ $masthead-link-color: $text-color !default;
18
+ $masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
19
+ $navicon-link-color-hover: mix(#000, $background-color, 30%) !default;
20
+
21
+ .author__urls.social-icons .svg-inline--fa,
22
+ .page__footer-follow .social-icons .svg-inline--fa {
23
+ color: inherit;
24
+ }
25
+
26
+ .ais-search-box .ais-search-box--input {
27
+ background-color: $form-background-color;
28
28
  }
@@ -1,57 +1,57 @@
1
- /* ==========================================================================
2
- Neon skin
3
- ========================================================================== */
4
-
5
- /* Colors */
6
- $background-color: #141010 !default;
7
- $text-color: #fff6fb !default;
8
- $primary-color: #f21368 !default;
9
- $border-color: mix(#fff, $background-color, 20%) !default;
10
- $code-background-color: mix(#000, $background-color, 15%) !default;
11
- $code-background-color-dark: mix(#000, $background-color, 20%) !default;
12
- $form-background-color: mix(#000, $background-color, 15%) !default;
13
- $footer-background-color: mix($primary-color, #000, 10%) !default;
14
- $link-color: $primary-color !default;
15
- $link-color-hover: mix(#fff, $link-color, 25%) !default;
16
- $link-color-visited: mix(#000, $link-color, 25%) !default;
17
- $masthead-link-color: $text-color !default;
18
- $masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
19
- $navicon-link-color-hover: mix(#000, $background-color, 30%) !default;
20
-
21
- /* neon syntax highlighting (base16) */
22
- $base00: #ffffff !default;
23
- $base01: #e0e0e0 !default;
24
- $base02: #d0d0d0 !default;
25
- $base03: #b0b0b0 !default;
26
- $base04: #000000 !default;
27
- $base05: #101010 !default;
28
- $base06: #151515 !default;
29
- $base07: #202020 !default;
30
- $base08: #ff0086 !default;
31
- $base09: #fd8900 !default;
32
- $base0a: #aba800 !default;
33
- $base0b: #00c918 !default;
34
- $base0c: #1faaaa !default;
35
- $base0d: #3777e6 !default;
36
- $base0e: #ad00a1 !default;
37
- $base0f: #cc6633 !default;
38
-
39
- .author__urls.social-icons .svg-inline--fa,
40
- .page__footer-follow .social-icons .svg-inline--fa {
41
- color: inherit;
42
- }
43
-
44
- /* next/previous buttons */
45
- .pagination--pager {
46
- color: $text-color;
47
- background-color: $primary-color;
48
- border-color: transparent;
49
-
50
- &:visited {
51
- color: $text-color;
52
- }
53
- }
54
-
55
- .ais-search-box .ais-search-box--input {
56
- background-color: $form-background-color;
1
+ /* ==========================================================================
2
+ Neon skin
3
+ ========================================================================== */
4
+
5
+ /* Colors */
6
+ $background-color: #141010 !default;
7
+ $text-color: #fff6fb !default;
8
+ $primary-color: #f21368 !default;
9
+ $border-color: mix(#fff, $background-color, 20%) !default;
10
+ $code-background-color: mix(#000, $background-color, 15%) !default;
11
+ $code-background-color-dark: mix(#000, $background-color, 20%) !default;
12
+ $form-background-color: mix(#000, $background-color, 15%) !default;
13
+ $footer-background-color: mix($primary-color, #000, 10%) !default;
14
+ $link-color: $primary-color !default;
15
+ $link-color-hover: mix(#fff, $link-color, 25%) !default;
16
+ $link-color-visited: mix(#000, $link-color, 25%) !default;
17
+ $masthead-link-color: $text-color !default;
18
+ $masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
19
+ $navicon-link-color-hover: mix(#000, $background-color, 30%) !default;
20
+
21
+ /* neon syntax highlighting (base16) */
22
+ $base00: #ffffff !default;
23
+ $base01: #e0e0e0 !default;
24
+ $base02: #d0d0d0 !default;
25
+ $base03: #b0b0b0 !default;
26
+ $base04: #000000 !default;
27
+ $base05: #101010 !default;
28
+ $base06: #151515 !default;
29
+ $base07: #202020 !default;
30
+ $base08: #ff0086 !default;
31
+ $base09: #fd8900 !default;
32
+ $base0a: #aba800 !default;
33
+ $base0b: #00c918 !default;
34
+ $base0c: #1faaaa !default;
35
+ $base0d: #3777e6 !default;
36
+ $base0e: #ad00a1 !default;
37
+ $base0f: #cc6633 !default;
38
+
39
+ .author__urls.social-icons .svg-inline--fa,
40
+ .page__footer-follow .social-icons .svg-inline--fa {
41
+ color: inherit;
42
+ }
43
+
44
+ /* next/previous buttons */
45
+ .pagination--pager {
46
+ color: $text-color;
47
+ background-color: $primary-color;
48
+ border-color: transparent;
49
+
50
+ &:visited {
51
+ color: $text-color;
52
+ }
53
+ }
54
+
55
+ .ais-search-box .ais-search-box--input {
56
+ background-color: $form-background-color;
57
57
  }