bootstrap/assets/scss/_anchor.scss

11 lines
172 B
SCSS
Raw Normal View History

.anchorjs-link {
2017-10-03 03:34:56 +00:00
font-weight: 400;
2017-05-29 19:00:47 +00:00
color: rgba($link-color, .5);
2016-01-04 02:10:22 +00:00
transition: color .16s linear;
2015-06-19 06:56:43 +00:00
2017-05-29 19:00:47 +00:00
&:hover {
color: $link-color;
text-decoration: none;
}
2015-06-19 06:56:43 +00:00
}