make link colors readable

This commit is contained in:
neri 2019-12-12 01:27:03 +01:00
parent 88a0acde34
commit 5924cc1216
3 changed files with 12 additions and 7 deletions

View File

@ -14,7 +14,7 @@
justify-content: flex-end; justify-content: flex-end;
} }
.footerItem { a.footerItem {
padding: 0 1rem; padding: 0 1rem;
color: white; color: white;
text-decoration: none; text-decoration: none;

View File

@ -24,7 +24,7 @@
flex-flow: row wrap; flex-flow: row wrap;
} }
.navItem { a.navItem {
padding: 1rem; padding: 1rem;
color: white; color: white;
font-weight: 900; font-weight: 900;
@ -32,10 +32,7 @@
text-decoration: none; text-decoration: none;
} }
.navItem:hover { a.navItem:hover,
text-decoration: solid underline white 0.1em; a.navItemActive {
}
.navItemActive {
text-decoration: solid underline white 0.1em; text-decoration: solid underline white 0.1em;
} }

View File

@ -18,3 +18,11 @@ body {
padding-bottom: 6rem; padding-bottom: 6rem;
min-height: 100%; min-height: 100%;
} }
a {
color: green;
}
a:visited {
color: darkorchid;
}