minor tweaks and improvements

This commit is contained in:
Pat Dryburgh 2018-08-12 15:12:53 -07:00
parent 10e959d7aa
commit a1b8bbbfba
3 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,9 @@
layout: default layout: default
--- ---
{% if site.paginate and site.paginate_path and paginator.page > 1 %} {% if site.data.menu and site.paginate and site.paginate_path and paginator.page > 1 %}
{% include menu.html %}
{% elsif site.paginate and site.paginate_path and paginator.page > 1 %}
{% include back-link.html %} {% include back-link.html %}
{% else %} {% else %}
<header class="site-masthead"> <header class="site-masthead">

View File

@ -21,7 +21,7 @@
.site-masthead h2 { .site-masthead h2 {
color: $muted-text-color; color: $muted-text-color;
font-size: 1.5em; font-size: 1.25em;
margin: 0; margin: 0;
@media (min-width: $on-tablet) { @media (min-width: $on-tablet) {
font-size: 3em; font-size: 3em;

View File

@ -3,6 +3,10 @@
list-style: none; list-style: none;
} }
.post-list li {
margin-bottom: 1em;
}
.post-link { .post-link {
color: $text-color; color: $text-color;
display: flex; display: flex;
@ -22,7 +26,9 @@
.post-link__heading { .post-link__heading {
display: block; display: block;
margin-right: 4em; margin-right: 4em;
padding: .25em 0; @media (min-width: $on-tablet) {
padding: .25em 0;
}
} }
.post-link__title + .post-link__excerpt { .post-link__title + .post-link__excerpt {