feat: Style improvements, use Source Code Pro for monospace, update Inter to 4.0, pill-like nav on desktop, color changes

This commit is contained in:
daudix-UFO
2023-11-22 03:29:55 +03:00
parent 0ce950d0b3
commit 9202b7fe92
24 changed files with 194 additions and 108 deletions

View File

@ -13,9 +13,9 @@
{% for page in section.pages %}
<article>
<h2>
<h3>
<a class="link-page" href="{{ page.permalink | safe }}">{{ page.title }}</a>
</h2>
</h3>
{%- if page.description %}
<p>{{ page.description }}</p>
{%- endif %}
@ -28,7 +28,7 @@
{%- for name, taxon in page.taxonomies %}
{%-for item in taxon %}
<a href="{{ get_taxonomy_url(kind=name, name=item) }}">
<a class="pill" href="{{ get_taxonomy_url(kind=name, name=item) }}">
<i class="bi bi-tag-fill"></i>
{{ item }}
</a>&nbsp;
@ -38,5 +38,6 @@
</small>
{%- endif %}
</article>
<hr>
{% endfor %}
{% endblock content %}