diff options
author | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 19:42:49 +0200 |
---|---|---|
committer | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 19:42:49 +0200 |
commit | 8c1cb6a102110a7a10e743c458293723c17558b9 (patch) | |
tree | 6e330550a21efcca208bc6f6eb60069d6a8aba04 /layouts/partials | |
parent | 56a0d30ba4263e161979991472489fdc3a3a921f (diff) | |
download | hugo-minimalist-theme-8c1cb6a102110a7a10e743c458293723c17558b9.tar.gz hugo-minimalist-theme-8c1cb6a102110a7a10e743c458293723c17558b9.tar.bz2 hugo-minimalist-theme-8c1cb6a102110a7a10e743c458293723c17558b9.zip |
Fix background style changes
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/footer.html | 4 | ||||
-rw-r--r-- | layouts/partials/header.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index b4df1c4..d4216d8 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,5 +1,5 @@ -<footer id="footer" class="mw7 center mv3"> - <span class="db tc black-60"> +<footer id="footer" class="center pa2 bg-white-40"> + <span class="db tc black-80"> © {{ now.Format "2006" }} {{ with .Site.Params.footer.copyright }}{{ . | safeHTML }}{{ else }}{{ with .Site.Author.name }}{{ . }}{{ else }}{{ with .Site.Title }}{{ . }}{{ end }}{{ end }}{{ end }}. All Rights Reserved </span> </footer> diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 2a64490..61065b0 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -37,14 +37,14 @@ </ul> </nav> -<nav class="dt w-100 border-box pa2"> +<nav class="dt w-100 border-box pa2 bg-white-40"> <a class="dtc dib v-mid dim " onclick="w3_open()"> <i class="fa fa-lg fa-bars black"></i> </a> <a href="{{ "/" | relLangURL }}" class="dtc v-mid link dim tc"> - <div class="f4 dib black-50">{{ .Site.Title }}</div> + <div class="f4 dib black-80 b">{{ .Site.Title }}</div> </a> {{ with ($.Scratch.Get "authorPicture") }} |