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