challenge-vtex-io-emersonfully/styles/css/vtex.flex-layout.css
2023-02-08 21:15:54 -03:00

43 lines
829 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 */
@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: 358px;
left: 158px;
}
.flexRow--btn-product :global(.vtex-button) {
background-color: black;
border: 1px solid black;
border-radius: 0;
font-family: "Open Sans";
}
.flexRow--btn-product :global(.vtex-button):hover {
background-color: rgb(36, 36, 36);
}