challenge-vtex-io-emersonfully/styles/css/vtex.flex-layout.css

50 lines
1.1 KiB
CSS
Raw Normal View History

2023-02-09 00:15:54 +00:00
/*
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");
2023-02-09 00:15:54 +00:00
/* Grid breakpoints */
.flexRowContent--product-main-stack {
padding: 0 30px;
}
2023-02-09 00:15:54 +00:00
@media screen and (max-width: 1024px) {
.flexRowContent--product-main-stack {
2023-02-09 00:15:54 +00:00
display: flex;
flex-direction: column;
}
}
2023-02-09 00:15:54 +00:00
@media screen and (max-width: 1024px) {
.flexRowContent--main-header-mobile {
display: flex;
flex-direction: row;
}
}
2023-02-09 00:15:54 +00:00
.flexCol {
position: relative;
}
2023-02-09 23:08:49 +00:00
@media screen and (min-width: 769px) {
.flexRow--btn-product {
width: 100%;
max-width: 526px;
2023-02-09 23:08:49 +00:00
position: absolute;
top: 366px;
left: 158px;
}
}
2023-02-09 00:15:54 +00:00
.flexRow--btn-product :global(.vtex-button) {
background-color: black;
border: 1px solid black;
border-radius: 0;
font-family: "Open Sans";
padding: 12px;
}
2023-02-09 00:15:54 +00:00
.flexRow--btn-product :global(.vtex-button):hover {
background-color: rgb(36, 36, 36);
}