forked from M3-Academy/challenge-vtex-io
54 lines
804 B
CSS
54 lines
804 B
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 */
|
|
/* Grid breakpoints */
|
|
.container {
|
|
width: 100%;
|
|
display: flex;
|
|
padding: 0 40px;
|
|
flex-wrap: wrap;
|
|
flex-basis: 100%;
|
|
align-items: baseline;
|
|
}
|
|
@media screen and (min-width: 1921px) {
|
|
.container {
|
|
width: 68.75%;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
.termArrow {
|
|
padding: 0;
|
|
}
|
|
.termArrow .caretIcon {
|
|
display: none;
|
|
}
|
|
|
|
.term {
|
|
font-size: 0;
|
|
}
|
|
|
|
.homeLink::before {
|
|
content: "Home";
|
|
font-size: 14px;
|
|
line-height: 20.12px;
|
|
}
|
|
|
|
.arrow--1 .link {
|
|
font-size: 0;
|
|
}
|
|
.arrow--1 .link::before {
|
|
content: "Sapatos";
|
|
font-size: 14px;
|
|
line-height: 20.12px;
|
|
}
|
|
|
|
.arrow--2 .link {
|
|
font-size: 14px;
|
|
line-height: 20.12px;
|
|
} |