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: 20da83a27cff5fb48c7bde7ed7543d995df85cc9 (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: darken($color, 10%);
  }
}