Skip to content

Commit a212cee

Browse files
Resize header images using css
1 parent 27212aa commit a212cee

File tree

4 files changed

+38
-7
lines changed

4 files changed

+38
-7
lines changed

_layouts/post.html

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
</section>
2020

2121
<header class="post-header">
22-
{% if page.header_image %}
23-
<img class="img-fluid rounded" alt="{{ page.title }} header image" src="{{ page.header_image | prepend: site.baseurl }}" />
24-
{% else %}
25-
<img class="img-fluid rounded" alt="{{ page.title }} header image" src="{{ '/img/posts/default-header.jpg' | prepend: site.baseurl }}" />
26-
{% endif %}
22+
<div class="post-img-crop">
23+
{% if page.header_image %}
24+
<img class="img-fluid" alt="{{ page.title }} header image" src="{{ page.header_image | prepend: site.baseurl }}" />
25+
{% else %}
26+
<img class="img-fluid" alt="{{ page.title }} header image" src="{{ '/img/posts/default-header.jpg' | prepend: site.baseurl }}" />
27+
{% endif %}
28+
</div>
2729
<h1 class="post-title">{{ page.title }}</h1>
2830
<p class="post-meta">
2931
{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} •

_sass/_base.scss

+10
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,14 @@ pre {
8787

8888
.mermaid{
8989
margin-bottom: 1rem;
90+
}
91+
92+
.img-crop{
93+
max-height: 700px;
94+
overflow: hidden;
95+
margin-top: -150px;
96+
}
97+
98+
.img-crop img{
99+
max-height: initial;
90100
}

_sass/_posts.scss

+19-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
.post-nav{
1111
font-size: $small-font-size;
12+
margin-bottom: 10px;
1213
.prev{
1314

1415
}
@@ -19,9 +20,25 @@
1920
}
2021

2122
.post-header{
22-
img{
23-
margin-top: 1rem;
23+
24+
.post-img-crop{
25+
max-height: 600px;
26+
overflow: hidden;
27+
}
28+
29+
.post-img-crop img{
30+
margin-top: -150px;
31+
}
32+
33+
.post-img-crop:hover {
34+
max-height: fit-content;
35+
overflow: auto;
36+
}
37+
38+
.post-img-crop img:hover{
39+
margin-top: 0;
2440
}
41+
2542
.post-title{
2643
margin-top: 1.5rem;
2744
margin-bottom: 1.5rem;

index.html

+2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
<div class="card mb-3">
99
{% assign first = site.posts[0] %}
1010
{% if first.header_image %}
11+
<div class="img-crop">
1112
<img class="img-fluid card-img-top" alt=" {{ first.title }} header image"
1213
src="{{ first.header_image | prepend: site.baseurl }}" />
14+
</div>
1315
{% endif %}
1416
<div class="card-body">
1517
<p class="card-text first-post-details">

0 commit comments

Comments
 (0)