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: 1e9307ebbe965a518d5d4412283e700a1e05a7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Alerts

@mixin alert-variant($background, $border, $body-color) {
  color: $body-color;
  background-color: $background;
  border-color: $border;

  hr {
    border-top-color: darken($border, 5%);
  }
  .alert-link {
    color: darken($body-color, 10%);
  }
}