Fix link color contrast in blog page
This commit is contained in:
parent
d3d284c9ce
commit
ad14058b74
2 changed files with 5 additions and 1 deletions
2
blog.njk
2
blog.njk
|
|
@ -15,7 +15,7 @@ title: Adrian Victor:Blog
|
||||||
{% if post.data.langKey == langKey %}
|
{% if post.data.langKey == langKey %}
|
||||||
<li>
|
<li>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ post.url | url }}">{{ post.data.postTitle }}</a><br>
|
<a class="postLink" href="{{ post.url | url }}">{{ post.data.postTitle }}</a><br>
|
||||||
<b>{{ post.data.date | postDate }}</b>{% if post.data.lastModified | postDate !== post.data.date | postDate %} ({{ i18n[langKey].lastEditedIn }} {{ post.data.lastModified | postDate}}){% endif %}
|
<b>{{ post.data.date | postDate }}</b>{% if post.data.lastModified | postDate !== post.data.date | postDate %} ({{ i18n[langKey].lastEditedIn }} {{ post.data.lastModified | postDate}}){% endif %}
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -957,6 +957,10 @@ header div:first-child {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.postLink {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
#postHeader * {
|
#postHeader * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue