Newer
Older
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
/*---BANNER HOME---*/
#highlight {
background: $grisOscuro;
article{
color: $blanco;
}
a {
color: $blanco;
}
p {
color: $blanco;
}
h3{
font-size: 36px;
}
.node-readmore a {
@extend .btn-primary;
display: inline-block;
}
.carousel-inner img{
display: block;
width: 100% !important;
height: auto;
}
.carousel-inner .carousel-caption{
max-width: 600px;
top: 50%;
bottom: auto;
margin: 0 auto;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
}
.carousel-overlay{
position: absolute;
width: 100%;
height: 100%;
background: #000;
opacity: 0.3;
transition: all 0.2s ease-out;
}
}