diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-12 16:56:26 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-12 16:57:35 +0200 |
| commit | 25800009ab67a9c9f438ad058ae764dfa060f420 (patch) | |
| tree | 7fa78c46b95747176a78894aeaf2432556f7103a /assets | |
| parent | 17f7626866927ba485fc712a1de7284c1d63e024 (diff) | |
| download | flevum-25800009ab67a9c9f438ad058ae764dfa060f420.tar.gz | |
Fix link color in the footer
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/custom.css | 14 |
1 files changed, 11 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); + } } } |
