Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_anchor.scss « scss « assets « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9e72cf543b99339171d3a3ad62bfe134d7b4d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
.anchorjs-link {
  font-weight: 400;
  color: rgba($link-color, .5);
  @include transition(color .15s ease-in-out, opacity .15s ease-in-out);

  &:focus,
  &:hover {
    color: $link-color;
    text-decoration: none;
  }
}