22c29780a92783bb4c77dc7ee0faaa81d8edcd37
[mindcoding-template-patches.git] / less / jumbotron.less
1 //
2 // Jumbotron
3 // --------------------------------------------------
4
5
6 .jumbotron {
7 padding: @jumbotron-padding;
8 margin-bottom: @jumbotron-padding;
9 font-size: @jumbotron-font-size;
10 font-weight: 200;
11 line-height: (@line-height-base * 1.5);
12 color: @jumbotron-color;
13 background-color: @jumbotron-bg;
14
15 h1 {
16 line-height: 1;
17 color: @jumbotron-heading-color;
18 }
19 p {
20 line-height: 1.4;
21 }
22
23 .container & {
24 border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
25 }
26
27 @media screen and (min-width: @screen-sm-min) {
28 padding-top: (@jumbotron-padding * 1.6);
29 padding-bottom: (@jumbotron-padding * 1.6);
30
31 .container & {
32 padding-left: (@jumbotron-padding * 2);
33 padding-right: (@jumbotron-padding * 2);
34 }
35
36 h1 {
37 font-size: (@font-size-base * 4.5);
38 }
39 }
40 }
This page took 0.021768 seconds and 3 git commands to generate.