jumbotron.less 615 Bytes
Newer Older
1
//
2
// Jumbotron
3
4
// --------------------------------------------------

5

6
.jumbotron {
Mark Otto's avatar
Mark Otto committed
7
  padding: 30px;
8
  margin-bottom: 30px;
9
  font-size: (@font-size-base * 1.5);
10
  font-weight: 200;
11
  line-height: (@line-height-base * 1.5);
12
  color: @jumbotron-lead-color;
13
  background-color: @jumbotron-bg;
14
15
  h1 {
    line-height: 1;
16
    color: @jumbotron-heading-color;
17
  }
Mark Otto's avatar
Mark Otto committed
18
19
20
21
  p {
    line-height: 1.4;
  }

22
  @media screen and (min-width: @screen-tablet) {
Mark Otto's avatar
Mark Otto committed
23
    padding: 50px 60px;
24
    border-radius: @border-radius-large; // Only round corners at higher resolutions
Mark Otto's avatar
Mark Otto committed
25
    h1 {
26
      font-size: (@font-size-base * 4.5);
Mark Otto's avatar
Mark Otto committed
27
    }
28
29
  }
}