"Swap nav selected background"

This commit is contained in:
Doug Le Tough 2017-11-25 11:26:53 +01:00
parent 427b199e49
commit 5c913898ff
1 changed files with 7 additions and 3 deletions

View File

@ -41,10 +41,15 @@ div.content > nav > a {
}
div.content > nav > a:hover {
background-color: var(--light-coloured-bg);
background-color: var(--coloured-bg);
color: var(--white);
cursor: pointer;
}
div.content > nav > a.selected {
background-color: var(--light-coloured-bg);
}
main {
color: var(--text-color);
background-color: var(--clear-bg);
@ -133,8 +138,7 @@ footer {
border-top-width: 1px;
}
header, footer,
div.content > nav > a.selected {
header, footer {
background-color: var(--coloured-bg);
color: var(--white);
}