2022-02-19 14:16:23 +01:00
|
|
|
.anchor-link {
|
|
|
|
padding: 0 .175rem;
|
2017-10-03 05:34:56 +02:00
|
|
|
font-weight: 400;
|
2018-11-23 14:00:03 +01:00
|
|
|
color: rgba($link-color, .5);
|
2022-02-19 14:16:23 +01:00
|
|
|
text-decoration: none;
|
|
|
|
opacity: 0;
|
|
|
|
@include transition(color .15s ease-in-out, opacity .15s ease-in-out);
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "#";
|
|
|
|
}
|
2015-06-19 08:56:43 +02:00
|
|
|
|
2020-11-02 21:55:41 +01:00
|
|
|
&:focus,
|
2022-02-19 14:16:23 +01:00
|
|
|
&:hover,
|
|
|
|
:hover > &,
|
|
|
|
:target > & {
|
2017-05-29 21:00:47 +02:00
|
|
|
color: $link-color;
|
|
|
|
text-decoration: none;
|
2022-02-19 14:16:23 +01:00
|
|
|
opacity: 1;
|
2017-05-29 21:00:47 +02:00
|
|
|
}
|
2015-06-19 08:56:43 +02:00
|
|
|
}
|