Skip to content

Commit

Permalink
Change link colours (#549)
Browse files Browse the repository at this point in the history
...to make them distinguishable from regular text. And for accessibility!
  • Loading branch information
baileythegreen committed Feb 22, 2021
1 parent 2a550c7 commit a4e53f9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions assets/css/lesson.scss
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,20 @@ a code {
color: #006cad;
}

a:link {
color: #196EBD;
}

a:active,
a:hover {
outline: 0;
text-decoration: underline;
}

a:visited {
color: #1AA4DA;
}

code {
white-space: nowrap;
padding: 2px 5px;
Expand Down

0 comments on commit a4e53f9

Please sign in to comment.