Make active nav link bold, set color, and adjust font weights of the nav bar

This commit is contained in:
Eryn Wells 2022-09-25 08:51:43 -07:00
parent f24e124f86
commit e029548d04

View file

@ -268,14 +268,14 @@ nav.site {
}
nav.site li {
color: var(--mid-blue);
display: block;
margin-inline-end: 0.5em;
}
nav.site .active {
font-weight: bold;
}
nav.site .active { font-weight: bold; }
nav.bulleted li:first-child::before {
color: var(--foreground-color);
content: "";
margin-inline-end: 0;
}
@ -284,6 +284,7 @@ nav.bulleted li::before {
color: var(--foreground-header-color);
content: "•";
font-size: 60%;
font-weight: normal;
opacity: 80%;
margin-inline-end: 0.5em;
}