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;
}
.footerItem {
a.footerItem {
padding: 0 1rem;
color: white;
text-decoration: none;

View File

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

View File

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