challenge-vtex-io-eleonora-otz/styles/sass/pages/product/vtex.tab-layout.scss

215 lines
4.6 KiB
SCSS

// Descrição do produto
:global(.vtex-tab-layout-0-x-container) {
padding: 0 40px;
margin: 0;
@media screen and (min-width: 1920px) {
margin: 6px 360px;
padding: 0;
}
// Header descrição do produto
.listContainer--tabList {
border-bottom: 1px solid $gray-100;
height: 43px;
justify-content: space-between;
padding: 0 64px;
@media screen and (min-width: 1920px) {
height: 49px;
}
@media screen and (max-width: 1024px) {
border-top: 1px solid $gray-100;
flex-direction: column;
height: fit-content;
padding: 16px 0 0 0;
margin: 0;
}
// Títulos do header da descrição do produto
.listItem {
@media screen and (max-width: 1024px) {
align-self: flex-start;
flex-direction: column;
height: fit-content;
padding: 0 0 16px;
margin: 0;
}
:global(.vtex-button) {
border: none;
@media screen and (max-width: 1024px) {
width: 100%;
}
&:hover {
background-color: transparent;
}
}
:global(.vtex-button__label) {
font-weight: 400;
font-size: 18px;
line-height: 18px;
color: $gray-100;
text-transform: capitalize;
padding: 0.25em 10px 0.32em;
&:hover {
color: $gray-500;
}
@media screen and (min-width: 1920px) {
font-size: 24px;
line-height: 24px;
}
@media screen and (max-width: 1024px) {
text-align: left;
flex-direction: column;
height: fit-content;
padding: 0 !important;
font-size: 18px;
line-height: 18px;
}
}
}
// Título ativo do header da descrição do produto
.listItemActive {
@media screen and (max-width: 1024px) {
align-self: flex-start;
flex-direction: column;
height: fit-content;
padding: 0 0 16px;
margin: 0;
}
:global(.vtex-button) {
background-color: transparent;
width: 114px;
border: none;
@media screen and (max-width: 1024px) {
width: 100%;
}
}
:global(.vtex-button__label) {
color: $black;
background-color: transparent;
border-bottom: 2px solid $black;
padding: 0;
&:hover {
color: $black;
}
@media screen and (max-width: 1024px) {
flex-direction: column;
text-align: left;
height: fit-content;
padding: 0;
}
@media screen and (max-width: 1024px) {
border: none;
}
}
}
}
// Container do conteúdo
:global(.vtex-tab-layout-0-x-contentContainer) {
.contentItem {
display: flex;
flex-direction: row;
gap: 32px;
align-items: flex-start;
padding: 32px 32px 16px;
@media (max-width: 1024px) {
flex-direction: column;
gap: 16px;
padding: 16px 0 0 0;
border-bottom: 1px solid $gray-100;
}
// Imagem da descrição do produto
.productImagesContainer {
width: 50%;
max-width: 50%;
}
:global(.vtex-store-components-3-x-productImageTag) {
width: 100%;
max-width: 100%;
display: block;
// max-width: 872px;
// @media screen and (max-width: 1024px) {
// width: 100% !important;
// max-width: 100%;
// }
}
// Conteúdo de texto da descrição do produto
:global(.vtex-rich-text-0-x-container--description-rich-text) {
max-width: 50%;
@media screen and (max-width: 1024px) {
max-width: 100%;
}
// Título da descrição do produto
:global(.vtex-rich-text-0-x-heading) {
font-weight: 400;
font-size: 24px;
line-height: 32px;
color: $gray-600;
margin-top: 0;
@media screen and (min-width: 1920px) {
font-size: 32px;
line-height: 32px;
}
@media screen and (max-width: 1024px) {
font-size: 20px;
line-height: 32px;
}
}
// Texto descrição do produto
:global(.vtex-rich-text-0-x-paragraph) {
font-weight: 400;
font-size: 16px;
line-height: 22px;
color: $gray-500;
@media screen and (min-width: 1920px) {
font-size: 18px;
line-height: 25px;
}
@media screen and (max-width: 1024px) {
font-size: 14px;
line-height: 19px;
}
}
}
}
}
}