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

_badge.scss « mixins « scss « bootstrap « scss « assets « static - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64b29cb579138e814cfcab45c6bf3e73e0090e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@mixin badge-variant($bg) {
  color: color-yiq($bg);
  background-color: $bg;

  @at-root a#{&} {
    @include hover-focus {
      color: color-yiq($bg);
      background-color: darken($bg, 10%);
    }

    &:focus,
    &.focus {
      outline: 0;
      box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
    }
  }
}