forked from M3-Academy/challenge-vtex-io
57 lines
1.1 KiB
CSS
57 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 */
|
||
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
|
||
|
/* Grid breakpoints */
|
||
|
.container--description {
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
|
||
|
.contentItem {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
gap: 32px;
|
||
|
margin-top: 32px;
|
||
|
}
|
||
|
|
||
|
.listContainer {
|
||
|
display: flex;
|
||
|
justify-content: space-evenly;
|
||
|
border-bottom: 1px solid #bfbfbf;
|
||
|
}
|
||
|
|
||
|
.listItem {
|
||
|
padding-top: 0;
|
||
|
padding-bottom: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.listItem :global(.vtex-button) {
|
||
|
border: none;
|
||
|
background: transparent;
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-size: 18px;
|
||
|
line-height: 38px;
|
||
|
color: #bfbfbf;
|
||
|
text-transform: capitalize;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.listItemActive :global(.vtex-button) {
|
||
|
border: none;
|
||
|
background: transparent;
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-size: 18px;
|
||
|
line-height: 38px;
|
||
|
color: #292929;
|
||
|
border-bottom: 2px solid #292929;
|
||
|
border-radius: 0;
|
||
|
text-transform: capitalize;
|
||
|
}
|