45 lines
943 B
CSS
45 lines
943 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 */
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
|
|
/* Grid breakpoints */
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRowContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
.flexRowContent--main-header-mobile {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.flexCol {
|
|
position: relative;
|
|
}
|
|
|
|
.flexRow--btn-product {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
position: absolute;
|
|
top: 366px;
|
|
left: 158px;
|
|
}
|
|
.flexRow--btn-product :global(.vtex-button) {
|
|
background-color: black;
|
|
border: 1px solid black;
|
|
border-radius: 0;
|
|
font-family: "Open Sans";
|
|
padding: 12px;
|
|
}
|
|
.flexRow--btn-product :global(.vtex-button):hover {
|
|
background-color: rgb(36, 36, 36);
|
|
} |