chore: style tweaks
This commit is contained in:
parent
afcdc286ea
commit
278ddec3eb
2 changed files with 6 additions and 2 deletions
|
@ -17,13 +17,17 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog__banner > h4,
|
.blog__banner > strong,
|
||||||
.blog__banner > p,
|
.blog__banner > p,
|
||||||
.blog__banner .meta {
|
.blog__banner .meta {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: var(--blog-roll-spacing);
|
margin-bottom: var(--blog-roll-spacing);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blog__banner > strong {
|
||||||
|
font-size: var(--font-size-lg);
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
:root {
|
:root {
|
||||||
--grid: repeat(3,minmax(0,1fr));
|
--grid: repeat(3,minmax(0,1fr));
|
||||||
|
|
|
@ -14,7 +14,7 @@ description: 'These are awesome blogs that I enjoy and you may enjoy too.'
|
||||||
<div class="blog__banner--grid">
|
<div class="blog__banner--grid">
|
||||||
{% for blog in blogroll %}
|
{% for blog in blogroll %}
|
||||||
<div class="blog__banner">
|
<div class="blog__banner">
|
||||||
<h4>{{ blog.name }}</h4>
|
<strong>{{ blog.name }}</strong>
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
<a class="no-underline" href="{{blog.url}}">Website</a>
|
<a class="no-underline" href="{{blog.url}}">Website</a>
|
||||||
{% if blog.feed %} • <a class="no-underline" href="{{ blog.feed }}">Feed</a>{% endif %}
|
{% if blog.feed %} • <a class="no-underline" href="{{ blog.feed }}">Feed</a>{% endif %}
|
||||||
|
|
Reference in a new issue