Base adjustments
This commit is contained in:
parent
7b8c2055a2
commit
974a9e8df6
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -51,7 +51,6 @@ html,
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.gh-head-actions a {
|
.gh-head-actions a {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -72,9 +71,37 @@ html,
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Post header
|
/* Index
|
||||||
/* ---------------------------------------------------------- */
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
|
.post-card {
|
||||||
|
margin: 0 0 4vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-card-link {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-card-image {
|
||||||
|
margin-left: 4vw;
|
||||||
|
width: 300px;
|
||||||
|
height: 200px;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Post
|
||||||
|
/* ---------------------------------------------------------- */
|
||||||
|
|
||||||
|
.gh-header {
|
||||||
|
padding: 0 0 4vw 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gh-title {
|
||||||
|
margin-top: 4vw;
|
||||||
|
}
|
||||||
|
|
||||||
.gh-image {
|
.gh-image {
|
||||||
grid-column: full-start / full-end;
|
grid-column: full-start / full-end;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -5,19 +5,19 @@ Re-usable card for linking to posts
|
||||||
<article class="post-card {{post_class}} {{#if feature_image}}with-image{{else}}no-image{{/if}}">
|
<article class="post-card {{post_class}} {{#if feature_image}}with-image{{else}}no-image{{/if}}">
|
||||||
<a class="post-card-link" href="{{url}}">
|
<a class="post-card-link" href="{{url}}">
|
||||||
<div class="post-card-content">
|
<div class="post-card-content">
|
||||||
{{#if feature_image}}
|
|
||||||
<img class="post-card-image"
|
|
||||||
srcset="{{img_url feature_image size="s"}} 300w,
|
|
||||||
{{img_url feature_image size="m"}} 600w,
|
|
||||||
{{img_url feature_image size="l"}} 1000w,
|
|
||||||
{{img_url feature_image size="xl"}} 2000w"
|
|
||||||
sizes="(max-width: 1000px) 400px, 700px"
|
|
||||||
src="{{img_url feature_image size="m"}}"
|
|
||||||
alt="{{title}}"
|
|
||||||
/>
|
|
||||||
{{/if}}
|
|
||||||
<h2 class="post-card-title">{{title}}</h2>
|
<h2 class="post-card-title">{{title}}</h2>
|
||||||
<p>{{excerpt}}</p>
|
<p>{{excerpt}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
{{#if feature_image}}
|
||||||
|
<img class="post-card-image"
|
||||||
|
srcset="{{img_url feature_image size="s"}} 300w,
|
||||||
|
{{img_url feature_image size="m"}} 600w,
|
||||||
|
{{img_url feature_image size="l"}} 1000w,
|
||||||
|
{{img_url feature_image size="xl"}} 2000w"
|
||||||
|
sizes="(max-width: 1000px) 400px, 700px"
|
||||||
|
src="{{img_url feature_image size="m"}}"
|
||||||
|
alt="{{title}}"
|
||||||
|
/>
|
||||||
|
{{/if}}
|
||||||
</a>
|
</a>
|
||||||
</article>
|
</article>
|
Loading…
Reference in New Issue