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

_alert.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99ebbc30551e49750f10fbd8b0f7e4ce8b277313 (plain)
1
2
3
4
5
6
7
8
9
@mixin alert-variant($background, $border, $color) {
  color: $color;
  @include gradient-bg($background);
  border-color: $border;

  .alert-link {
    color: shade-color($color, 20%);
  }
}