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 {
color: $primary;
&:link {
text-decoration: none;
}
&:hover {
text-decoration: underline;
transition: color 0.5s;
color: $body-color;
}
@ -93,12 +98,12 @@ a {
color: $primary;
}
}
}
a.no-color-change {
&, &:hover {
text-decoration: none;
color: inherit;
&.no-color-change {
&, &:hover {
text-decoration: none;
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 {
padding-left: $spacer * 1.5;
}
@ -177,3 +176,9 @@ table td {
text-align: center;
}
}
h1, h2, h3, h4, h5, h6 {
.anchor {
font-weight: lighter;
}
}