Fix link styling

This commit is contained in:
ItsDrike 2021-08-26 02:37:49 +02:00
parent 466283f135
commit 2e399a6661
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -81,7 +81,12 @@ footer {
a { a {
color: $primary; color: $primary;
&:link {
text-decoration: none;
}
&:hover { &:hover {
text-decoration: underline;
transition: color 0.5s; transition: color 0.5s;
color: $body-color; color: $body-color;
} }
@ -93,12 +98,12 @@ a {
color: $primary; color: $primary;
} }
} }
}
a.no-color-change { &.no-color-change {
&, &:hover { &, &:hover {
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
}
} }
} }
@ -119,12 +124,6 @@ p, li, h1, h2, h3, h4, h5, h6 {
} }
} }
h1, h2, h3, h4, h5, h6 {
.anchor {
font-weight: lighter;
}
}
ul ul, ol ol { ul ul, ol ol {
padding-left: $spacer * 1.5; padding-left: $spacer * 1.5;
} }
@ -177,3 +176,9 @@ table td {
text-align: center; text-align: center;
} }
} }
h1, h2, h3, h4, h5, h6 {
.anchor {
font-weight: lighter;
}
}