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