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: 96a7dbf9c783fc2656c1422110002660cb32adf2 (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);

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