diff --git a/_includes/postslist.njk b/_includes/postslist.njk index 6527c98..f7792ea 100644 --- a/_includes/postslist.njk +++ b/_includes/postslist.njk @@ -15,7 +15,7 @@ - {% if post.data.synopsis %}

{{ post.data.synopsis | truncate(110) | safe }}

{% else %}{{ post.content | truncate(140) | safe }}{% endif %} + {% if post.data.synopsis %}

{{ post.data.synopsis | truncate(200) | safe }}

{% else %}{{ post.content | truncate(140) | safe }}{% endif %} {% endfor %} diff --git a/public/css/index.css b/public/css/index.css index 9040305..245400f 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -74,9 +74,9 @@ :root { /* Font Sizes */ --font-xxl: 2.25rem; - --font-xl: 1.25rem; - --font-l: 1.25rem; - --font-n: .95rem; + --font-xl: 1.5rem; + --font-l: 1.5rem; + --font-n: 1rem; } } @@ -510,18 +510,20 @@ h2 + .header-anchor { } .postlist-item { flex-flow: column wrap; + width: 100% } .postlist-link { + width: 100%; padding: 0; } .post-image { width: 100%; - height: auto; + min-width: 100%; } .post-image-container { margin-right: 0; - height: 10em; - min-width: 100%; + max-height: 10em; + width: 100%; } .post-metadata { margin-bottom: var(--single-gap);