Fix link color contrast in blog page

This commit is contained in:
天クマ 2026-07-04 00:12:51 -03:00
commit ad14058b74
2 changed files with 5 additions and 1 deletions

View file

@ -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>

View file

@ -957,6 +957,10 @@ header div:first-child {
opacity: 1; opacity: 1;
} }
.postLink {
color: white;
}
#postHeader * { #postHeader * {
margin-bottom: 0; margin-bottom: 0;
} }