diff options
author | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 04:03:33 +0200 |
---|---|---|
committer | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 04:03:33 +0200 |
commit | 9cf03e436ed50ec6646e241a47308758002a56d4 (patch) | |
tree | 0ca5bf2004eee6d0224ab4ae42e278029196d3ff /layouts/partials | |
parent | 46ee5bd2810850456b49499894ba3b838a167e24 (diff) | |
download | hugo-minimalist-theme-9cf03e436ed50ec6646e241a47308758002a56d4.tar.gz hugo-minimalist-theme-9cf03e436ed50ec6646e241a47308758002a56d4.tar.bz2 hugo-minimalist-theme-9cf03e436ed50ec6646e241a47308758002a56d4.zip |
styling and footer
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/footer.html | 5 | ||||
-rw-r--r-- | layouts/partials/head.html | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..992a65d --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,5 @@ +<footer id="footer" class="mw7 center mb3"> + <span class="db tc black-60"> + © {{ 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/head.html b/layouts/partials/head.html index ddbc6e9..eb2804a 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -20,19 +20,24 @@ display: none; overflow:auto; } + a { + text-decoration: none; + color: #357edd; + } #sidebar a { - text-shadow: 1px 3px 1px rgba(0,0,0,0.9); + text-shadow: 1px 2px 0px rgba(0,0,0,0.9); } .post-header { - text-shadow: 0 2px 1px rgba(0,0,0,0.9); + text-shadow: 1px 2px 1px rgba(0,0,0,0.9); } pre { background: #3f3f3f; color: #dcdcdc; padding: 0.5em;} + </style> <script> function w3_open() { |