Skip to content

Commit

Permalink
Fix color values for links
Browse files Browse the repository at this point in the history
Color values can't be >255.
  • Loading branch information
marlinstrub committed Jan 6, 2024
1 parent c799013 commit 15765e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ body {

a, a:visited {
text-decoration: none;
color: rgba(8,63,259,1.00);
color: rgba(8,63,255,1.00);
}
a:hover {
text-decoration: underline rgba(8,63,259,1.00);
color: rgba(8,63,259,1.00);
text-decoration: underline rgba(8,63,255,1.00);
color: rgba(8,63,255,1.00);
}
.org-bold {
font-weight: 500;
Expand Down

0 comments on commit 15765e4

Please sign in to comment.