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
59
60
61
| @size: 220px;
| #icon-carousel {
| margin-top: @buffer-sm;
| font-size: @size;
| text-align: center;
| line-height: @size + 20;
| text-shadow: 0 2px 0 rgba(0,0,0,0.15);
| }
| .carousel-control {
| top: @size + 10px;
| .square(30px);
| border-width: 0;
| font-size: 30px;
| line-height: 25px;
| left: 300/2 - 36px;
| &.right {
| left: auto;
| right: 300/2 - 36px;
| }
| &.right, &.left {
| background-image: none;
| filter: none;
| }
| }
|
|
| .jumbotron-carousel {
| padding-top: 40px;
| .btn {
| margin-top: @buffer-lg;
| font-family: @font-family-serif;
| font-size: 24px;
| padding: 17px 30px;
| color: @jumbotron-color;
| border-color: mix(@jumbotron-color, @jumbotron-bg, 75%);
| background-color: transparent;
| text-shadow: 0 1px 0 rgba(0,0,0,0.15);
| &:hover {
| background-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
| border-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
| color: @jumbotron-bg;
| text-shadow: 0 -1px 0 @jumbotron-color;
| }
| }
| .shameless-self-promotion {
| margin-top: @buffer-lg;
| font-size: @font-size-base;
| line-height: @line-height-base;
| color: mix(@jumbotron-color, @jumbotron-bg, 60%);
| text-shadow: 0 1px 0 rgba(0,0,0,0.15);
| a {
| color: mix(@jumbotron-color, @jumbotron-bg, 80%);
| border-bottom: dotted 1px mix(@jumbotron-color, @jumbotron-bg, 50%);
| &:hover {
| color: @jumbotron-color;
| text-decoration: none;
| border-bottom: solid 1px @jumbotron-color;
| }
| }
| }
| }
|
|