Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/qqhann/hugo-primer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiushi Pan <qiu.gits@gmail.com>2018-12-01 14:23:23 +0300
committerQiushi Pan <qiu.gits@gmail.com>2018-12-01 14:23:23 +0300
commit7d59a24b09e45eaf691feafc1a0bce0a6bd00098 (patch)
treebb5c0db211bec445af542baa6aebf74bac824cd9 /layouts
parente673c7635ccfc86e792b8a619b99480a397c1fab (diff)
Update: more appearing look
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/list.html4
-rw-r--r--layouts/partials/taxonomy.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index e2c324d..e77ea3f 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -11,12 +11,12 @@
{{ .Content }}
{{ range .Paginator.Pages }}
- <div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-2">
+ <div class="rounded-2 box-shadow-medium px-3 pb-2 pt-2 mb-3">
<!-- single page card -->
<div class="Subhead mb-2">
<div class="Subhead-heading">
<a href="{{ .URL }}">
- <div class="h2 mt-1 mb-1 link-gray-dark">{{ .Title }}</div>
+ <div class="h2 mt-1 mb-1">{{ .Title }}</div>
</a>
</div>
<div class="Subhead-description">
diff --git a/layouts/partials/taxonomy.html b/layouts/partials/taxonomy.html
index f173797..6b15956 100644
--- a/layouts/partials/taxonomy.html
+++ b/layouts/partials/taxonomy.html
@@ -2,12 +2,12 @@
<!-- categories -->
{{ with .Params.Categories }}{{ range . }}
<a href='{{ "/categories/" | relLangURL }}{{ . | urlize }}' class="muted-link">
- <span class="Label Label--outline bg-blue-light">{{ . }}</span>
+ <span class="Label Label--gray-darker">{{ . }}</span>
</a>
{{ end }}{{ end }}
<!-- tags -->
{{ with .Params.Tags }}{{ range . }}
<a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}' class="muted-link">
- <span class="Label Label--outline">{{ . }}</span>
+ <span class="Label Label--gray">{{ . }}</span>
</a>
{{ end }}{{ end }}