Adds Bootstrap, header and footer
[mindcoding-template-patches.git] / mindcoding-template / 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.021682 seconds and 4 git commands to generate.