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

_text-emphasis.scss « mixins « scss « bootstrap « vendor « sass - github.com/mikeblum/hugo-now.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cd4b6a4f008acb58dcfd415893df420edf6efd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Typography

@mixin text-emphasis-variant($parent, $color) {
  #{$parent} {
    color: $color !important;
  }
  a#{$parent} {
    @include hover-focus {
      color: darken($color, 10%) !important;
    }
  }
}