Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_background.scss 409B

12345678910111213141516171819
  1. // stylelint-disable declaration-no-important
  2. @each $color, $value in $theme-colors {
  3. @include bg-variant(".bg-#{$color}", $value, true);
  4. }
  5. @if $enable-gradients {
  6. @each $color, $value in $theme-colors {
  7. @include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
  8. }
  9. }
  10. .bg-white {
  11. background-color: $white !important;
  12. }
  13. .bg-transparent {
  14. background-color: transparent !important;
  15. }