Redesign tag entry view

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-02-16 01:09:23 +05:30
parent a25320a1fc
commit d8639b5c5c
2 changed files with 3 additions and 13 deletions

View File

@ -3,8 +3,6 @@
--background-color: white;
--text-color: #515151;
--heading-color: #313131;
--tag-background: #202020;
--tag-text-color: white;
--blockquote-color: #7a7a7a;
--post-time-color: #757575;
}
@ -15,8 +13,6 @@
--background-color: #202020;
--text-color: #f0f0f0;
--heading-color: white;
--tag-background: white;
--tag-text-color: #202020;
--blockquote-color: #bababa;
--post-time-color: #bababa;
}
@ -32,8 +28,6 @@
--background-color: #202020;
--text-color: #f0f0f0;
--heading-color: white;
--tag-background: white;
--tag-text-color: #202020;
--blockquote-color: #bababa;
--post-time-color: #bababa;
}
@ -65,14 +59,9 @@ div.tag-container {
display: none;
}
.tag-button {
background-color: var(--tag-background);
.tag {
border: none;
color: var(--tag-text-color);
padding: 7px 12px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
}

View File

@ -8,8 +8,9 @@
{{- end -}}
</p>
<div class="tag-container">
Tags:
{{ range .Params.tags }}
<button class="tag-button"><a class="tag-button" href="{{ "tags/" | absLangURL }}{{ . | urlize }}">#{{.}}</a> </button>
<a class="tag" href="{{ "tags/" | absLangURL }}{{ . | urlize }}" target="_blank">#{{.}}</a>
{{ end }}
</div>
{{- with .Content -}}