Fix design of post tags

This commit is contained in:
Keichi Takahashi 2015-02-03 23:54:30 +09:00
parent df7f7d6cf3
commit a79c1b8183
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
</div>
<div class="pull-right">
{{ range .Params.tags }}
<span class="post-tag"><a href="{{ $baseurl }}/tags/{{ . | urlize }}">#{{ . }}</a></span>
<span class="post-tag small"><a href="{{ $baseurl }}/tags/{{ . | urlize }}">#{{ . }}</a></span>
{{ end }}
</div>
</div>

View File

@ -138,7 +138,7 @@ main {
.post-tag a:hover {
background-color: rgba(0, 0, 0, 1.0);
color: rgba(255, 255, 255, 0.9);
color: rgba(255, 255, 255, 1.0);
transition: color,border-color,background-color 0.1s linear;
}