48 lines
1.1 KiB
CSS
48 lines
1.1 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 */
|
||
|
/* Fontes */
|
||
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
|
||
|
/* Cores */
|
||
|
/* Grid breakpoints */
|
||
|
.container--structure {
|
||
|
padding: 0 40px;
|
||
|
}
|
||
|
|
||
|
.contentContainer {
|
||
|
padding: 0 32px;
|
||
|
}
|
||
|
|
||
|
.listContainer {
|
||
|
border-bottom: 1px solid #b9b9b9;
|
||
|
height: 43px;
|
||
|
justify-content: space-between;
|
||
|
padding: 0 64px;
|
||
|
margin-bottom: 32px;
|
||
|
}
|
||
|
.listContainer .listItem :global(.vtex-button):hover {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
.listContainer .listItem :global(.vtex-button__label) {
|
||
|
font-weight: 400;
|
||
|
font-size: 18px;
|
||
|
line-height: 18px;
|
||
|
color: #bfbfbf;
|
||
|
text-transform: capitalize;
|
||
|
padding: 0.25em 10px 0.32em;
|
||
|
}
|
||
|
.listContainer .listItemActive :global(.vtex-button) {
|
||
|
background-color: #fff;
|
||
|
border: none;
|
||
|
}
|
||
|
.listContainer .listItemActive :global(.vtex-button__label) {
|
||
|
color: #000000;
|
||
|
background-color: #fff;
|
||
|
border-bottom: 2px solid #000000;
|
||
|
padding: 0;
|
||
|
}
|