challenge-vtex-io-Gustavo-R.../styles/css/vtex.tab-layout.css

62 lines
1.4 KiB
CSS
Raw Normal View History

/*
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--pdp-tabSections::after {
content: "";
width: 100%;
border-bottom: 1px solid rgb(185, 185, 185);
}
@media screen and (max-width: 1024px) {
.listContainer--pdp-tabSections {
flex-direction: column;
}
.listContainer--pdp-tabSections::before {
content: "";
width: 100%;
border-bottom: 1px solid rgb(185, 185, 185);
}
}
.listContainer--pdp-tabSections {
margin-bottom: 32px;
justify-content: space-evenly;
align-items: end;
}
@media screen and (max-width: 1024px) {
.listContainer--pdp-tabSections {
align-items: start;
}
}
.listContainer--pdp-tabSections .listItem {
padding: 0;
margin: 0;
}
.listContainer--pdp-tabSections .listItem :global(.vtex-button) {
outline: none;
border: none;
background: transparent;
color: rgb(191, 191, 191);
font-family: "Open Sans", sans-serif;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 38px;
text-transform: initial;
}
.listContainer--pdp-tabSections .listItemActive {
border-bottom: 1px solid #000000;
}
@media screen and (max-width: 1024px) {
.listContainer--pdp-tabSections .listItemActive {
border-bottom: none;
}
}
.listContainer--pdp-tabSections .listItemActive :global(.vtex-button) {
color: #000000;
}