Skip to content

Commit

Permalink
Change color of visited links
Browse files Browse the repository at this point in the history
  • Loading branch information
k-schlosser authored and greenbonebot committed Jul 24, 2024
1 parent 9d92ac4 commit 97071b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ a {
}

a:hover {
color: #11AB51 !important;
border-bottom: 1px solid var(--color-content-foreground);
}

a:visited {
color: var(--color-content-foreground);
border-bottom: 1px solid var(--color-content-foreground);
}

a:active {
color: #11AB51;
border-bottom: 1px solid var(--color-content-foreground);
}
Expand Down

0 comments on commit 97071b1

Please sign in to comment.