33 lines
No EOL
1.5 KiB
CSS
33 lines
No EOL
1.5 KiB
CSS
@media (min-width: 992px) {body {
|
|
background: rgba(255,255,255,1);
|
|
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(238,238,238,1) 100%);
|
|
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(255,255,255,1)), color-stop(50%, rgba(238,238,238,1)), color-stop(100%, rgba(238,238,238,1)));
|
|
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(238,238,238,1) 100%);
|
|
background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(238,238,238,1) 100%);
|
|
background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(238,238,238,1) 100%);
|
|
background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 50%, rgba(238,238,238,1) 100%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=1 );
|
|
}
|
|
}
|
|
|
|
.carousel {
|
|
border-bottom: 10px solid #fec100;
|
|
}
|
|
.carousel-item {
|
|
height: 65vh;
|
|
min-height: 300px;
|
|
background: no-repeat center center scroll;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
.carousel-control-next, .carousel-control-prev {
|
|
height: 20%;
|
|
width: 5%;
|
|
top: 40%;
|
|
background-color: #fec100;
|
|
}
|
|
.carousel-control-next:hover, .carousel-control-prev:hover {
|
|
opacity: 1;
|
|
} |