diff options
| -rw-r--r-- | assets/css/custom.css | 14 | ||||
| -rw-r--r-- | templates/_includes/layout/footer.html | 1 |
2 files changed, 12 insertions, 3 deletions
diff --git a/assets/css/custom.css b/assets/css/custom.css index 5751615..d23b92c 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -24,8 +24,16 @@ table td { } } -@media screen and (max-width: 800px) { - .site-navigation { /* Override for hard-coded light theme style. */ - background: rgba(0, 0, 0, 0.9); +.site-footer { + a { /* Override for hard-coded light theme style. */ + font-size: 14px; + font-family: 'PT Sans', sans-serif; + color: var(--grey-ccc); + text-decoration: none; + @include transition(all .15s ease); + + &:hover { + color: var(--grey-555); + } } } diff --git a/templates/_includes/layout/footer.html b/templates/_includes/layout/footer.html index bd27826..3c92951 100644 --- a/templates/_includes/layout/footer.html +++ b/templates/_includes/layout/footer.html @@ -1,6 +1,7 @@ <footer class="site-footer"> <nav> <a href="/impressum.html">Impressum</a> + | <a href="/datenschutz.html">Datenschutz</a> </nav> |
