minimal-mistakes-jekyll 4.18.0 → 4.19.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +70 -0
  3. data/README.md +4 -4
  4. data/_data/ui-text.yml +164 -15
  5. data/_includes/archive-single.html +1 -7
  6. data/_includes/author-profile.html +30 -41
  7. data/_includes/comments-providers/custom_scripts.html +3 -0
  8. data/_includes/comments-providers/scripts.html +1 -1
  9. data/_includes/comments-providers/staticman_v2.html +1 -1
  10. data/_includes/comments.html +1 -1
  11. data/_includes/documents-collection.html +3 -1
  12. data/_includes/feature_row +4 -16
  13. data/_includes/figure +5 -8
  14. data/_includes/gallery +7 -23
  15. data/_includes/head.html +1 -6
  16. data/_includes/masthead.html +2 -11
  17. data/_includes/nav_list +3 -24
  18. data/_includes/page__date.html +5 -0
  19. data/_includes/page__hero.html +4 -25
  20. data/_includes/paginator.html +1 -1
  21. data/_includes/posts-category.html +3 -1
  22. data/_includes/posts-tag.html +3 -1
  23. data/_includes/scripts.html +2 -12
  24. data/_includes/seo.html +4 -13
  25. data/_includes/sidebar.html +3 -8
  26. data/_includes/video +2 -0
  27. data/_layouts/default.html +1 -1
  28. data/_layouts/home.html +1 -1
  29. data/_layouts/single.html +1 -5
  30. data/_sass/minimal-mistakes.scss +1 -1
  31. data/_sass/minimal-mistakes/_base.scss +6 -6
  32. data/_sass/minimal-mistakes/_forms.scss +1 -1
  33. data/_sass/minimal-mistakes/_masthead.scss +1 -1
  34. data/_sass/minimal-mistakes/_page.scss +3 -3
  35. data/_sass/minimal-mistakes/_sidebar.scss +40 -11
  36. data/_sass/minimal-mistakes/_utilities.scss +27 -0
  37. data/_sass/minimal-mistakes/_variables.scss +11 -3
  38. data/assets/js/lunr/lunr-store.js +1 -6
  39. data/assets/js/main.min.js +3 -3
  40. data/assets/js/plugins/jquery.greedy-navigation.js +23 -32
  41. data/assets/js/plugins/smooth-scroll.js +30 -12
  42. metadata +10 -8
@@ -0,0 +1,3 @@
1
+ <!-- start custom comments scripts -->
2
+
3
+ <!-- end custom comments scripts -->
@@ -13,6 +13,6 @@
13
13
  {% when "utterances" %}
14
14
  {% include /comments-providers/utterances.html %}
15
15
  {% when "custom" %}
16
- {% include /comments-providers/custom.html %}
16
+ {% include /comments-providers/custom_scripts.html %}
17
17
  {% endcase %}
18
18
  {% endif %}
@@ -1,4 +1,4 @@
1
- {% if site.repository and site.staticman.branch %}
1
+ {% if site.repository and site.comments.staticman.branch %}
2
2
  <script>
3
3
  (function ($) {
4
4
  $('#new_comment').submit(function () {
@@ -154,6 +154,6 @@
154
154
  <h4 class="page__comments-title">{{ comments_label }}</h4>
155
155
  <section id="utterances-comments"></section>
156
156
  {% when "custom" %}
157
- <section id="custom-comments"></section>
157
+ {% include /comments-providers/custom.html %}
158
158
  {% endcase %}
159
159
  </div>
@@ -15,5 +15,7 @@
15
15
  {% endif %}
16
16
 
17
17
  {%- for post in entries -%}
18
- {% include archive-single.html %}
18
+ {%- unless post.hidden -%}
19
+ {% include archive-single.html %}
20
+ {%- endunless -%}
19
21
  {%- endfor -%}
@@ -7,24 +7,12 @@
7
7
  <div class="feature__wrapper">
8
8
 
9
9
  {% for f in feature_row %}
10
-
11
- {% if f.url contains "://" %}
12
- {% capture f_url %}{{ f.url }}{% endcapture %}
13
- {% else %}
14
- {% capture f_url %}{{ f.url | relative_url }}{% endcapture %}
15
- {% endif %}
16
-
17
10
  <div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
18
11
  <div class="archive__item">
19
12
  {% if f.image_path %}
20
13
  <div class="archive__item-teaser">
21
- <img src=
22
- {% if f.image_path contains "://" %}
23
- "{{ f.image_path }}"
24
- {% else %}
25
- "{{ f.image_path | relative_url }}"
26
- {% endif %}
27
- alt="{% if f.alt %}{{ f.alt }}{% endif %}">
14
+ <img src="{{ f.image_path | relative_url }}"
15
+ alt="{% if f.alt %}{{ f.alt }}{% endif %}">
28
16
  {% if f.image_caption %}
29
17
  <span class="archive__item-caption">{{ f.image_caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
30
18
  {% endif %}
@@ -43,11 +31,11 @@
43
31
  {% endif %}
44
32
 
45
33
  {% if f.url %}
46
- <p><a href="{{ f_url }}" class="btn {{ f.btn_class }}">{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
34
+ <p><a href="{{ f.url | relative_url }}" class="btn {{ f.btn_class }}">{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
47
35
  {% endif %}
48
36
  </div>
49
37
  </div>
50
38
  </div>
51
39
  {% endfor %}
52
40
 
53
- </div>
41
+ </div>
@@ -1,12 +1,9 @@
1
1
  <figure class="{{ include.class }}">
2
- <img src=
3
- {% if include.image_path contains "://" %}
4
- "{{ include.image_path }}"
5
- {% else %}
6
- "{{ include.image_path | relative_url }}"
7
- {% endif %}
8
- alt="{% if include.alt %}{{ include.alt }}{% endif %}">
2
+ <img src="{{ include.image_path | relative_url }}"
3
+ alt="{% if include.alt %}{{ include.alt }}{% endif %}">
9
4
  {% if include.caption %}
10
5
  <figcaption>
11
6
  {{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}
12
- </figcaption>{% endif %}</figure>
7
+ </figcaption>
8
+ {% endif %}
9
+ </figure>
@@ -19,33 +19,17 @@
19
19
  <figure class="{{ gallery_layout }} {{ include.class }}">
20
20
  {% for img in gallery %}
21
21
  {% if img.url %}
22
- <a href=
23
- {% if img.url contains "://" %}
24
- "{{ img.url }}"
25
- {% else %}
26
- "{{ img.url | relative_url }}"
27
- {% endif %}
28
- {% if img.title %}title="{{ img.title }}"{% endif %}
29
- >
30
- <img src=
31
- {% if img.image_path contains "://" %}
32
- "{{ img.image_path }}"
33
- {% else %}
34
- "{{ img.image_path | relative_url }}"
35
- {% endif %}
36
- alt="{% if img.alt %}{{ img.alt }}{% endif %}">
22
+ <a href="{{ img.url | relative_url }}"
23
+ {% if img.title %}title="{{ img.title }}"{% endif %}>
24
+ <img src="{{ img.image_path | relative_url }}"
25
+ alt="{% if img.alt %}{{ img.alt }}{% endif %}">
37
26
  </a>
38
27
  {% else %}
39
- <img src=
40
- {% if img.image_path contains "://" %}
41
- "{{ img.image_path }}"
42
- {% else %}
43
- "{{ img.image_path | relative_url }}"
44
- {% endif %}
45
- alt="{% if img.alt %}{{ img.alt }}{% endif %}">
28
+ <img src="{{ img.image_path | relative_url }}"
29
+ alt="{% if img.alt %}{{ img.alt }}{% endif %}">
46
30
  {% endif %}
47
31
  {% endfor %}
48
32
  {% if include.caption %}
49
33
  <figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
50
34
  {% endif %}
51
- </figure>
35
+ </figure>
@@ -31,11 +31,6 @@
31
31
 
32
32
  {% if site.head_scripts %}
33
33
  {% for script in site.head_scripts %}
34
- {% if script contains "://" %}
35
- {% capture script_path %}{{ script }}{% endcapture %}
36
- {% else %}
37
- {% capture script_path %}{{ script | relative_url }}{% endcapture %}
38
- {% endif %}
39
- <script src="{{ script_path }}"></script>
34
+ <script src="{{ script | relative_url }}"></script>
40
35
  {% endfor %}
41
36
  {% endif %}
@@ -1,8 +1,4 @@
1
- {% if site.logo contains "://" %}
2
- {% capture logo_path %}{{ site.logo }}{% endcapture %}
3
- {% else %}
4
- {% capture logo_path %}{{ site.logo | relative_url }}{% endcapture %}
5
- {% endif %}
1
+ {% capture logo_path %}{{ site.logo }}{% endcapture %}
6
2
 
7
3
  <div class="masthead">
8
4
  <div class="masthead__inner-wrap">
@@ -17,13 +13,8 @@
17
13
  </a>
18
14
  <ul class="visible-links">
19
15
  {%- for link in site.data.navigation.main -%}
20
- {%- if link.url contains '://' -%}
21
- {%- assign url = link.url -%}
22
- {%- else -%}
23
- {%- assign url = link.url | relative_url -%}
24
- {%- endif -%}
25
16
  <li class="masthead__menu-item">
26
- <a href="{{ url }}" {% if link.description %}title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
17
+ <a href="{{ link.url | relative_url }}"{% if link.description %} title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
27
18
  </li>
28
19
  {%- endfor -%}
29
20
  </ul>
@@ -8,14 +8,7 @@
8
8
  {% for nav in navigation %}
9
9
  <li>
10
10
  {% if nav.url %}
11
- {% comment %} internal/external URL check {% endcomment %}
12
- {% if nav.url contains "://" %}
13
- {% assign nav_url = nav.url %}
14
- {% else %}
15
- {% assign nav_url = nav.url | relative_url %}
16
- {% endif %}
17
-
18
- <a href="{{ nav_url }}"><span class="nav__sub-title">{{ nav.title }}</span></a>
11
+ <a href="{{ nav.url | relative_url }}"><span class="nav__sub-title">{{ nav.title }}</span></a>
19
12
  {% else %}
20
13
  <span class="nav__sub-title">{{ nav.title }}</span>
21
14
  {% endif %}
@@ -23,25 +16,11 @@
23
16
  {% if nav.children != null %}
24
17
  <ul>
25
18
  {% for child in nav.children %}
26
- {% comment %} internal/external URL check {% endcomment %}
27
- {% if child.url contains "://" %}
28
- {% assign child_url = child.url %}
29
- {% else %}
30
- {% assign child_url = child.url | relative_url %}
31
- {% endif %}
32
-
33
- {% comment %} set "active" class on current page {% endcomment %}
34
- {% if child.url == page.url %}
35
- {% assign active = "active" %}
36
- {% else %}
37
- {% assign active = "" %}
38
- {% endif %}
39
-
40
- <li><a href="{{ child_url }}" class="{{ active }}">{{ child.title }}</a></li>
19
+ <li><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
41
20
  {% endfor %}
42
21
  </ul>
43
22
  {% endif %}
44
23
  </li>
45
24
  {% endfor %}
46
25
  </ul>
47
- </nav>
26
+ </nav>
@@ -0,0 +1,5 @@
1
+ {% if page.last_modified_at %}
2
+ <p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %-d, %Y" }}</time></p>
3
+ {% elsif page.date %}
4
+ <p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time></p>
5
+ {% endif %}
@@ -1,20 +1,4 @@
1
- {% if page.header.image contains "://" %}
2
- {% capture img_path %}{{ page.header.image }}{% endcapture %}
3
- {% else %}
4
- {% capture img_path %}{{ page.header.image | relative_url }}{% endcapture %}
5
- {% endif %}
6
-
7
- {% if page.header.cta_url contains "://" %}
8
- {% capture cta_path %}{{ page.header.cta_url }}{% endcapture %}
9
- {% else %}
10
- {% capture cta_path %}{{ page.header.cta_url | relative_url }}{% endcapture %}
11
- {% endif %}
12
-
13
- {% if page.header.overlay_image contains "://" %}
14
- {% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
15
- {% elsif page.header.overlay_image %}
16
- {% capture overlay_img_path %}{{ page.header.overlay_image | relative_url }}{% endcapture %}
17
- {% endif %}
1
+ {% capture overlay_img_path %}{{ page.header.overlay_image | relative_url }}{% endcapture %}
18
2
 
19
3
  {% if page.header.overlay_filter contains "rgba" %}
20
4
  {% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %}
@@ -51,22 +35,17 @@
51
35
  <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
52
36
  {% endif %}
53
37
  {% if page.header.cta_url %}
54
- <p><a href="{{ cta_path }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
38
+ <p><a href="{{ page.header.cta_url | relative_url }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
55
39
  {% endif %}
56
40
  {% if page.header.actions %}
57
41
  <p>
58
42
  {% for action in page.header.actions %}
59
- {% if action.url contains "://" %}
60
- {% assign url = action.url %}
61
- {% else %}
62
- {% assign url = action.url | relative_url %}
63
- {% endif %}
64
- <a href="{{ url }}" class="btn btn--light-outline btn--large">{{ action.label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a>
43
+ <a href="{{ action.url | relative_url }}" class="btn btn--light-outline btn--large">{{ action.label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a>
65
44
  {% endfor %}
66
45
  {% endif %}
67
46
  </div>
68
47
  {% else %}
69
- <img src="{{ img_path }}" alt="{{ image_description }}" class="page__hero-image">
48
+ <img src="{{ page.header.image | relative_url }}" alt="{{ image_description }}" class="page__hero-image">
70
49
  {% endif %}
71
50
  {% if page.header.caption %}
72
51
  <span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
@@ -1,6 +1,6 @@
1
1
  {% if paginator.total_pages > 1 %}
2
2
  <nav class="pagination">
3
- {% assign first_page_path = site.paginate_path | replace: 'page:num', '' | replace: '//', '/' | relative_url %}
3
+ {% assign first_page_path = paginator.first_page_path | default: site.paginate_path | replace: 'page:num', '' | replace: '//', '/' | relative_url %}
4
4
  <ul>
5
5
  {% comment %} Link for previous page {% endcomment %}
6
6
  {% if paginator.previous_page %}
@@ -1,3 +1,5 @@
1
1
  {%- for post in site.categories[include.taxonomy] -%}
2
- {% include archive-single.html %}
2
+ {%- unless post.hidden -%}
3
+ {% include archive-single.html %}
4
+ {%- endunless -%}
3
5
  {%- endfor -%}
@@ -1,3 +1,5 @@
1
1
  {%- for post in site.tags[include.taxonomy] -%}
2
- {% include archive-single.html %}
2
+ {%- unless post.hidden -%}
3
+ {% include archive-single.html %}
4
+ {%- endunless -%}
3
5
  {%- endfor -%}
@@ -1,11 +1,6 @@
1
1
  {% if site.footer_scripts %}
2
2
  {% for script in site.footer_scripts %}
3
- {% if script contains "://" %}
4
- {% capture script_path %}{{ script }}{% endcapture %}
5
- {% else %}
6
- {% capture script_path %}{{ script | relative_url }}{% endcapture %}
7
- {% endif %}
8
- <script src="{{ script_path }}"></script>
3
+ <script src="{{ script | relative_url }}"></script>
9
4
  {% endfor %}
10
5
  {% else %}
11
6
  <script src="{{ '/assets/js/main.min.js' | relative_url }}"></script>
@@ -29,11 +24,6 @@
29
24
 
30
25
  {% if site.after_footer_scripts %}
31
26
  {% for script in site.after_footer_scripts %}
32
- {% if script contains "://" %}
33
- {% capture script_path %}{{ script }}{% endcapture %}
34
- {% else %}
35
- {% capture script_path %}{{ script | relative_url }}{% endcapture %}
36
- {% endif %}
37
- <script src="{{ script_path }}"></script>
27
+ <script src="{{ script | relative_url }}"></script>
38
28
  {% endfor %}
39
29
  {% endif %}
@@ -22,7 +22,7 @@
22
22
 
23
23
  {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
24
24
  {%- if seo_description -%}
25
- {%- assign seo_description = seo_description | markdownify | strip_html | newline_to_br | strip_newlines | replace: '<br />', ' ' | escape_once -%}
25
+ {%- assign seo_description = seo_description | markdownify | strip_html | newline_to_br | strip_newlines | replace: '<br />', ' ' | escape_once | strip -%}
26
26
  {%- endif -%}
27
27
 
28
28
  {%- assign author = page.author | default: page.authors[0] | default: site.author -%}
@@ -32,22 +32,13 @@
32
32
  {%- assign author_twitter = author.twitter | replace: "@", "" -%}
33
33
  {%- endif -%}
34
34
 
35
- {%- assign page_large_image = page.header.og_image | default: page.header.overlay_image | default: page.header.image -%}
36
- {%- unless page_large_image contains '://' -%}
37
- {%- assign page_large_image = page_large_image | absolute_url -%}
38
- {%- endunless -%}
35
+ {%- assign page_large_image = page.header.og_image | default: page.header.overlay_image | default: page.header.image | absolute_url -%}
39
36
  {%- assign page_large_image = page_large_image | escape -%}
40
37
 
41
- {%- assign page_teaser_image = page.header.teaser | default: site.og_image -%}
42
- {%- unless page_teaser_image contains '://' -%}
43
- {%- assign page_teaser_image = page_teaser_image | absolute_url -%}
44
- {%- endunless -%}
38
+ {%- assign page_teaser_image = page.header.teaser | default: site.og_image | absolute_url -%}
45
39
  {%- assign page_teaser_image = page_teaser_image | escape -%}
46
40
 
47
- {%- assign site_og_image = site.og_image -%}
48
- {%- unless site_og_image contains '://' -%}
49
- {%- assign site_og_image = site_og_image | absolute_url -%}
50
- {%- endunless -%}
41
+ {%- assign site_og_image = site.og_image | absolute_url -%}
51
42
  {%- assign site_og_image = site_og_image | escape -%}
52
43
 
53
44
  {%- if page.date -%}
@@ -4,13 +4,8 @@
4
4
  {% if page.sidebar %}
5
5
  {% for s in page.sidebar %}
6
6
  {% if s.image %}
7
- <img src=
8
- {% if s.image contains "://" %}
9
- "{{ s.image }}"
10
- {% else %}
11
- "{{ s.image | relative_url }}"
12
- {% endif %}
13
- alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
7
+ <img src="{{ s.image | relative_url }}"
8
+ alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
14
9
  {% endif %}
15
10
  {% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
16
11
  {% if s.text %}{{ s.text | markdownify }}{% endif %}
@@ -21,4 +16,4 @@
21
16
  {% endif %}
22
17
  {% endif %}
23
18
  </div>
24
- {% endif %}
19
+ {% endif %}
@@ -9,5 +9,7 @@
9
9
  <iframe src="https://www.youtube-nocookie.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
10
10
  {% elsif video_provider == "google-drive" %}
11
11
  <iframe src="https://drive.google.com/file/d/{{ video_id }}/preview" frameborder="0" allowfullscreen></iframe>
12
+ {% elsif video_provider == "bilibili" %}
13
+ <iframe src="https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>
12
14
  {% endif %}
13
15
  </div>
@@ -3,7 +3,7 @@
3
3
 
4
4
  <!doctype html>
5
5
  <!--
6
- Minimal Mistakes Jekyll Theme 4.18.0 by Michael Rose
6
+ Minimal Mistakes Jekyll Theme 4.19.3 by Michael Rose
7
7
  Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
8
8
  Free for personal and commercial use under the MIT license
9
9
  https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
@@ -6,7 +6,7 @@ layout: archive
6
6
 
7
7
  <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
8
8
 
9
- {% if site.paginate %}
9
+ {% if paginator %}
10
10
  {% assign posts = paginator.posts %}
11
11
  {% else %}
12
12
  {% assign posts = site.posts %}
@@ -51,11 +51,7 @@ layout: default
51
51
  <h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
52
52
  {% endif %}
53
53
  {% include page__taxonomy.html %}
54
- {% if page.last_modified_at %}
55
- <p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %-d, %Y" }}</time></p>
56
- {% elsif page.date %}
57
- <p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time></p>
58
- {% endif %}
54
+ {% include page__date.html %}
59
55
  </footer>
60
56
 
61
57
  {% if page.share %}{% include social-share.html %}{% endif %}
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Minimal Mistakes Jekyll Theme 4.18.0 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.19.3 by Michael Rose
3
3
  * Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
4
4
  * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
5
5
  */
@@ -35,27 +35,27 @@ h6 {
35
35
 
36
36
  h1 {
37
37
  margin-top: 0;
38
- font-size: $type-size-3;
38
+ font-size: $h-size-1;
39
39
  }
40
40
 
41
41
  h2 {
42
- font-size: $type-size-4;
42
+ font-size: $h-size-2;
43
43
  }
44
44
 
45
45
  h3 {
46
- font-size: $type-size-5;
46
+ font-size: $h-size-3;
47
47
  }
48
48
 
49
49
  h4 {
50
- font-size: $type-size-6;
50
+ font-size: $h-size-4;
51
51
  }
52
52
 
53
53
  h5 {
54
- font-size: $type-size-6;
54
+ font-size: $h-size-5;
55
55
  }
56
56
 
57
57
  h6 {
58
- font-size: $type-size-6;
58
+ font-size: $h-size-6;
59
59
  }
60
60
 
61
61
  small,