2023-02-05 15:57:44 +00:00
|
|
|
/*
|
|
|
|
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 */
|
|
|
|
.listContainer--listaDescricao {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 0px 64px;
|
|
|
|
gap: 99px;
|
|
|
|
border-bottom: 1px solid #b9b9b9;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
.listContainer--listaDescricao .listItem {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
color: #bfbfbf;
|
|
|
|
}
|
|
|
|
.listContainer--listaDescricao .listItem :global(.vtex-button) {
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
background-color: white;
|
|
|
|
padding: 0px 16px;
|
|
|
|
}
|
|
|
|
.listContainer--listaDescricao .listItem :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
color: #bfbfbf;
|
|
|
|
padding-top: 0 !important;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
padding-left: 0 !important;
|
|
|
|
padding-right: 0 !important;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
2023-02-10 18:55:38 +00:00
|
|
|
@media (min-width: 2560px) {
|
|
|
|
.listContainer--listaDescricao .listItem :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 15:57:44 +00:00
|
|
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) {
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid #000000;
|
|
|
|
background-color: white;
|
|
|
|
padding: 0px 16px;
|
|
|
|
}
|
|
|
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
color: #000000;
|
|
|
|
padding-top: 0 !important;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
padding-left: 0 !important;
|
|
|
|
padding-right: 0 !important;
|
|
|
|
text-transform: capitalize;
|
2023-02-10 18:55:38 +00:00
|
|
|
}
|
|
|
|
@media (min-width: 2560px) {
|
|
|
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.listContainer--listaDescricao {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 16px;
|
|
|
|
padding: 16px 0;
|
|
|
|
border-top: 1px solid #b9b9b9;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
.listItem :global(.vtex-button) {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
.listItemActive :global(.vtex-button) {
|
|
|
|
padding: 0 !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
.contentContainer {
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
border-bottom: 1px solid #b9b9b9;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
:global(.vtex-store-components-3-x-productImagesContainer) {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
:global(.vtex-store-components-3-x-productDescriptionContainer) {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 376px) {
|
|
|
|
.listContainer--listaDescricao {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
.contentContainer {
|
|
|
|
gap: 16px;
|
|
|
|
}
|
2023-02-05 15:57:44 +00:00
|
|
|
}
|