File tree 4 files changed +38
-7
lines changed
4 files changed +38
-7
lines changed Original file line number Diff line number Diff line change 19
19
</ section >
20
20
21
21
< 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 >
27
29
< h1 class ="post-title "> {{ page.title }}</ h1 >
28
30
< p class ="post-meta ">
29
31
{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} •
Original file line number Diff line number Diff line change 87
87
88
88
.mermaid {
89
89
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 ;
90
100
}
Original file line number Diff line number Diff line change 9
9
10
10
.post-nav {
11
11
font-size : $small-font-size ;
12
+ margin-bottom : 10px ;
12
13
.prev {
13
14
14
15
}
19
20
}
20
21
21
22
.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 ;
24
40
}
41
+
25
42
.post-title {
26
43
margin-top : 1.5rem ;
27
44
margin-bottom : 1.5rem ;
Original file line number Diff line number Diff line change 8
8
< div class ="card mb-3 ">
9
9
{% assign first = site.posts[0] %}
10
10
{% if first.header_image %}
11
+ < div class ="img-crop ">
11
12
< img class ="img-fluid card-img-top " alt =" {{ first.title }} header image "
12
13
src ="{{ first.header_image | prepend: site.baseurl }} " />
14
+ </ div >
13
15
{% endif %}
14
16
< div class ="card-body ">
15
17
< p class ="card-text first-post-details ">
You can’t perform that action at this time.
0 commit comments