Edit the style of the post tags.

This commit is contained in:
Mary 2022-11-08 17:00:04 +00:00
parent e0aba41b9d
commit d5a539576f
2 changed files with 7 additions and 1 deletions

View File

@ -20,6 +20,12 @@ body {
display: table !important;
}
.posttags {
background-color: #6d0f00 !important;
//font-weight: bold !important;
}
th, td {
border: none !important;
text-align: left;

View File

@ -9,7 +9,7 @@
{{ with .Params.tags }}
<div class="post__tags">
{{ range . }}
<a class="post__tag" href="{{ "tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
<a class="post__tag posttags" href="{{ "tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
{{ end }}