aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-12 16:56:26 +0200
committerEugen Wissner <belka@caraus.de>2026-07-12 16:57:35 +0200
commit25800009ab67a9c9f438ad058ae764dfa060f420 (patch)
tree7fa78c46b95747176a78894aeaf2432556f7103a
parent17f7626866927ba485fc712a1de7284c1d63e024 (diff)
downloadflevum-25800009ab67a9c9f438ad058ae764dfa060f420.tar.gz
Fix link color in the footer
-rw-r--r--assets/css/custom.css14
-rw-r--r--templates/_includes/layout/footer.html1
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>