make tags less visually strong
This commit is contained in:
parent
bb7ddee453
commit
9827abc40e
@ -78,7 +78,7 @@ layout: page
|
|||||||
|
|
||||||
{% if site.feed_show_tags != false and post.tags.size > 0 %}
|
{% if site.feed_show_tags != false and post.tags.size > 0 %}
|
||||||
<div class="blog-tags">
|
<div class="blog-tags">
|
||||||
Tags:
|
<span>Tags:</span>
|
||||||
{% for tag in post.tags %}
|
{% for tag in post.tags %}
|
||||||
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
|
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -45,7 +45,7 @@ layout: base
|
|||||||
|
|
||||||
{% if page.tags.size > 0 %}
|
{% if page.tags.size > 0 %}
|
||||||
<div class="blog-tags">
|
<div class="blog-tags">
|
||||||
Tags:
|
<span>Tags:</span>
|
||||||
{% for tag in page.tags %}
|
{% for tag in page.tags %}
|
||||||
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
|
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -540,21 +540,28 @@ footer .footer-custom-content {
|
|||||||
|
|
||||||
.blog-tags {
|
.blog-tags {
|
||||||
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||||
color: #999;
|
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
margin-bottom: 1.875rem;
|
margin-bottom: 1.875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blog-tags span {
|
||||||
|
color: {{ site.text-col | default: "#404040" }};
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
.blog-tags a {
|
.blog-tags a {
|
||||||
color: {{ site.link-col | default: "#008AFF" }};
|
color: {{ site.text-col | default: "#404040" }};
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: 0 0.3125rem;
|
padding: 0 0.3125rem;
|
||||||
|
opacity: 0.8;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-tags a:hover {
|
.blog-tags a:hover {
|
||||||
border-radius: 2px;
|
opacity: 1;
|
||||||
color: {{ site.hover-col | default: "#0085A1" }};
|
color: {{ site.text-col | default: "#404040" }};
|
||||||
background-color: #EEE;
|
border-color: {{ site.text-col | default: "#404040" }};
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-preview .blog-tags {
|
.post-preview .blog-tags {
|
||||||
|
Loading…
Reference in New Issue
Block a user