diff --git a/_layouts/post.html b/_layouts/post.html index 77967552..692d9312 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -19,11 +19,13 @@
- {% if page.header_image %} - {{ page.title }} header image - {% else %} - {{ page.title }} header image - {% endif %} +
+ {% if page.header_image %} + {{ page.title }} header image + {% else %} + {{ page.title }} header image + {% endif %} +

{{ page.title }}

{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • diff --git a/_sass/_base.scss b/_sass/_base.scss index a0a04663..c1e944ac 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -87,4 +87,14 @@ pre { .mermaid{ margin-bottom: 1rem; +} + +.img-crop{ + max-height: 700px; + overflow: hidden; + margin-top: -150px; +} + +.img-crop img{ + max-height: initial; } \ No newline at end of file diff --git a/_sass/_posts.scss b/_sass/_posts.scss index 83899eb0..32f10bc3 100644 --- a/_sass/_posts.scss +++ b/_sass/_posts.scss @@ -9,6 +9,7 @@ .post-nav{ font-size: $small-font-size; + margin-bottom: 10px; .prev{ } @@ -19,9 +20,25 @@ } .post-header{ - img{ - margin-top: 1rem; + + .post-img-crop{ + max-height: 600px; + overflow: hidden; + } + + .post-img-crop img{ + margin-top: -150px; + } + + .post-img-crop:hover { + max-height: fit-content; + overflow: auto; + } + + .post-img-crop img:hover{ + margin-top: 0; } + .post-title{ margin-top: 1.5rem; margin-bottom: 1.5rem; diff --git a/index.html b/index.html index 34929c43..85689697 100644 --- a/index.html +++ b/index.html @@ -8,8 +8,10 @@

{% assign first = site.posts[0] %} {% if first.header_image %} +
 {{ first.title }} header image +
{% endif %}