Compare commits

..

No commits in common. "9d599f9bd40139a806b57fdb81f005d5e3e504a7" and "be4cbac36384d8f6eea3fd5e24d72043469f3fb7" have entirely different histories.

3 changed files with 13 additions and 16 deletions

View File

@ -9,7 +9,7 @@ Click on a tag to see all posts on the topic.
</p>
<ul class="taglist">
{% for tag in collections.all | getAllTags | filterTagList | sort(false, false, tag) %}
{% for tag in collections.all | getAllTags | filterTagList %}
{% set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
<li><a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a></li>
{% endfor %}

View File

@ -522,13 +522,10 @@ h2 + .header-anchor {
.post-metadata time, time.postlist-date {
font-size: var(--font-s);
}
.post-tag, a.post-tag {
.post-tag, a.post-tag, .taglist li a {
font-size: var(--font-xs);
}
.taglist {
flex-flow: column nowrap;
}
.taglist li a {
font-size: var(--font-n);
}
}

View File

@ -26,37 +26,37 @@ ul.socialLinks {
align-items: center;
}
.socialLinks a {
background-color: var(--text-color);
border-radius: var(--corner-radius);
.socialLinks li {
background-color: var(--nav-pill-background-color-inactive);
color: var(--nav-pill-text-color);
border-radius: var(--pill-radius);
padding: .5em;
margin-bottom: 1em;
list-style-type: none;
transition: var(--transition-normal);
transition: all var(--transition-time);
width: 20em;
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: center;
text-decoration: none;
}
.socialLinks a:hover {
.socialLinks li:hover {
background-color: var(--contrast-color);
transform: scale(1.05, 1.05);
}
.socialLinks a {
text-decoration: none;
}
.socialLinks a img {
max-width: 1em;
margin-right: .5em;
}
.socialLinks a li {
color: var(--background-color);
}
@media(max-width: 556px) {
.socialLinks a {
.socialLinks li {
width: 90vw;
height: 3rem;
display: flex;