Compare commits

...

3 commits

Author SHA1 Message Date
0f9e98be8a Compile CSS 2025-09-24 21:19:11 -04:00
c6e4120202 Make footer link background colors explicitly transparent
Because we overrode the link color there to stay blue on hover.
2025-09-24 21:18:55 -04:00
1a37b7fe85 Try making links by default the fancy way 2025-09-24 21:11:21 -04:00
3 changed files with 8 additions and 6 deletions

View file

@ -7261,17 +7261,17 @@ p label {
p label::after { p label::after {
content: ':'; } content: ':'; }
.content a { a {
font-weight: bold; font-weight: bold;
padding: 0.25em; padding: 0.25em;
margin: -0.25em; } margin: -0.25em; }
.content a:hover { a:hover {
color: #FFFFFF; color: #FFFFFF;
background-color: #26599B; } background-color: #26599B; }
.content a:focus { a:focus {
color: #FFFFFF; color: #FFFFFF;
background-color: #26599B; } background-color: #26599B; }
.content a:active { a:active {
color: #CBC219; color: #CBC219;
background-color: #26599B; } background-color: #26599B; }
@ -8528,7 +8528,8 @@ ul.slick-dots {
color: currentColor; } color: currentColor; }
.footer a:hover { .footer a:hover {
color: #26599B; color: #26599B;
text-decoration: underline; } text-decoration: underline;
background-color: transparent; }
.footer .container { .footer .container {
padding-top: 3em; } padding-top: 3em; }
.footer .footer-logo .icon { .footer .footer-logo .icon {

View file

@ -57,7 +57,7 @@ p {
// Links // Links
.content a { a {
font-weight: bold; font-weight: bold;
padding: $link-hover-padding; padding: $link-hover-padding;
margin: -$link-hover-padding; margin: -$link-hover-padding;

View file

@ -16,6 +16,7 @@
a:hover { a:hover {
color: $blue; color: $blue;
text-decoration: underline; text-decoration: underline;
background-color: transparent;
} }
// //
.container { .container {