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

_jumbotron.scss « scss - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d60793efd2e04e104c85b36e3b8b5b61cb6d450b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// Jumbotron
// --------------------------------------------------


.jumbotron {
  padding: $jumbotron-padding ($jumbotron-padding / 2);
  margin-bottom: $jumbotron-padding;
  color: $jumbotron-color;
  background-color: $jumbotron-bg;
  @include border-radius($border-radius-lg);
}

.jumbotron-heading {
  color: $jumbotron-heading-color;
}

.jumbotron-hr {
  border-top-color: darken($jumbotron-bg, 10%);
}

@include media-breakpoint-up(sm) {
  .jumbotron {
    padding: ($jumbotron-padding * 2) $jumbotron-padding;
  }

  .jumbotron-heading {
    font-size: $jumbotron-heading-font-size;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  @include border-radius(0);
}