feat(client): Highlight footer links on hover

This commit is contained in:
Oliver Eyton-Williams
2019-06-03 17:35:29 +02:00
committed by Mrugesh Mohapatra
parent fbb8311af7
commit 04512695a9
2 changed files with 12 additions and 0 deletions

View File

@ -15,6 +15,10 @@
display: block; display: block;
} }
.footer a:hover {
background-color: #E0E0E0;
}
.night .footer { .night .footer {
color: #606f7b; color: #606f7b;
background: #222; background: #222;
@ -26,4 +30,5 @@
.night .footer a:hover { .night .footer a:hover {
color: #606f7b; color: #606f7b;
background-color: #2A2A2A;
} }

View File

@ -10,6 +10,13 @@
.night .landing-page #top-right-nav li > a, .night #top-right-nav li > span { .night .landing-page #top-right-nav li > a, .night #top-right-nav li > span {
color: #fff; color: #fff;
} }
.night .landing-page a {
color: #006400;
}
.night .landing-page a:hover {
color: #001800;
}
/* End night mode override */ /* End night mode override */
.black-text { .black-text {