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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
| @media (min-width: @screen-lg) {
| #icon-carousel {
| @size: 240px;
| font-size: @size;
| line-height: @size + 20;
| margin-top: @buffer-lg;
| }
|
| .carousel-control {
| top: @size + 25px;
| .square(30px);
| font-size: 40px;
| line-height: 35px;
| left: 370/2 - 42px;
| &.right {
| right: 370/2 - 42px;
| }
| }
|
| .jumbotron-ad {
| padding: 50px 0;
| h1 {
| margin-top: 25px;
| font-size: 90px;
| }
| p {
| font-size: 28px;
| margin: 35px 0 20px;
| }
| }
|
| .jumbotron-carousel {
| padding: 50px 0;
| h1 { font-size: 100px; }
| p {
| font-size: 32px;
| margin: 20px 0;
| }
| .btn-large {
| font-size: 30px;
| padding: 21px 35px;
| }
| }
|
| .stripe-ad .lead { padding-top: 0; }
|
| .lead {
| font-size: 26px;
| line-height: 36px;
| }
|
| .fonticons {
| .tagline { }
| .action { width: 18%; }
| }
|
| .hide-lg { display: none; }
| }
|
|