85 lines
2.2 KiB
CSS
85 lines
2.2 KiB
CSS
/*
|
|
0 - 600PX: Phone
|
|
600 - 900px: Table portrait
|
|
900 - 1200px: Tablet landscape
|
|
[1200 - 1800] is where our nortal styles apply
|
|
1800px + : Big desktop
|
|
*/
|
|
/* Media Query M3 */
|
|
/* Grid breakpoints */
|
|
.sliderLayoutContainer--carousel {
|
|
padding: 0 59.2px 113px;
|
|
}
|
|
@media only screen and (min-width: 1920px) {
|
|
.sliderLayoutContainer--carousel {
|
|
padding: 0 379.2px 113px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.sliderLayoutContainer--carousel {
|
|
padding: 0 57.2px 105px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 639px) {
|
|
.sliderLayoutContainer--carousel {
|
|
padding: 0 55.2px 65px;
|
|
}
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderLeftArrow {
|
|
margin-left: 40px;
|
|
}
|
|
@media only screen and (min-width: 1920px) {
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderLeftArrow {
|
|
margin-left: 360px;
|
|
}
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderLeftArrow::before {
|
|
content: "";
|
|
width: 11.2px;
|
|
height: 29.6px;
|
|
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-andreamm.svg");
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderRightArrow {
|
|
margin-right: 40px;
|
|
}
|
|
@media only screen and (min-width: 1920px) {
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderRightArrow {
|
|
margin-right: 360px;
|
|
}
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows.sliderRightArrow::after {
|
|
content: "";
|
|
width: 11.2px;
|
|
height: 29.6px;
|
|
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-andreamm.svg");
|
|
}
|
|
.sliderLayoutContainer--carousel .sliderArrows .caretIcon {
|
|
display: none;
|
|
}
|
|
.sliderLayoutContainer--carousel .paginationDotsContainer {
|
|
bottom: 64px;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
@media only screen and (max-width: 639px) {
|
|
.sliderLayoutContainer--carousel .paginationDotsContainer {
|
|
bottom: 32px;
|
|
}
|
|
}
|
|
.sliderLayoutContainer--carousel .paginationDotsContainer .paginationDot {
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #000000;
|
|
}
|
|
.sliderLayoutContainer--carousel .paginationDotsContainer .paginationDot--isActive {
|
|
width: 17px !important;
|
|
height: 17px !important;
|
|
border: 0.5px solid #000000;
|
|
background: #ffffff;
|
|
} |