From 04512695a9d27c3674c43f20287796672ef1e047 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Mon, 3 Jun 2019 17:35:29 +0200 Subject: [PATCH] feat(client): Highlight footer links on hover --- client/src/components/Footer/footer.css | 5 +++++ client/src/pages/index.css | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/client/src/components/Footer/footer.css b/client/src/components/Footer/footer.css index 936c047cd6..ec51047c95 100644 --- a/client/src/components/Footer/footer.css +++ b/client/src/components/Footer/footer.css @@ -15,6 +15,10 @@ display: block; } +.footer a:hover { + background-color: #E0E0E0; +} + .night .footer { color: #606f7b; background: #222; @@ -26,4 +30,5 @@ .night .footer a:hover { color: #606f7b; + background-color: #2A2A2A; } diff --git a/client/src/pages/index.css b/client/src/pages/index.css index 20f9b65e8e..949a4b0626 100644 --- a/client/src/pages/index.css +++ b/client/src/pages/index.css @@ -10,6 +10,13 @@ .night .landing-page #top-right-nav li > a, .night #top-right-nav li > span { color: #fff; } +.night .landing-page a { + color: #006400; +} +.night .landing-page a:hover { + color: #001800; +} + /* End night mode override */ .black-text {