feature/sabrinamiranda #1

Merged
SabrinaMiranda merged 33 commits from feature/sabrinamiranda into master 2023-02-10 23:17:10 +00:00
5 changed files with 180 additions and 2 deletions
Showing only changes of commit 15b7fae3e1 - Show all commits

View File

@ -168,10 +168,28 @@
width: 100%; width: 100%;
margin-left: 32px; margin-left: 32px;
} }
@media screen and (max-width: 1024px) {
[class*="html--description"] {
margin-left: 0;
margin-top: 16px;
}
}
[class*="html--product-description"] { [class*="html--product-description"] {
display: flex; display: flex;
} }
@media screen and ((min-width: 769) and (max-width: 1024px)) {
[class*="html--product-description"] {
margin-top: 16px;
}
}
@media screen and (max-width: 768px) {
[class*="html--product-description"] {
position: relative;
top: 9px;
margin-top: 16px;
}
}
[class*="html--product-description"] .contentItem{ [class*="html--product-description"] .contentItem{
display: flex; display: flex;
@ -187,6 +205,11 @@
color: #BFBFBF; color: #BFBFBF;
height: 38px; height: 38px;
} }
@media screen and (min-width: 1920px) {
[class*="html--product-description"] button {
font-size: 24px;
}
}
[class*="html--product-description"] button:hover { [class*="html--product-description"] button:hover {
border: transparent; border: transparent;
background-color: transparent; background-color: transparent;

View File

@ -271,6 +271,16 @@
padding: 0; padding: 0;
border: none; border: none;
} }
@media screen and (max-width: 1024px) {
.shippingTable {
margin-top: 32px;
}
}
@media screen and (max-width: 768px) {
.shippingTable {
padding-top: 16px;
}
}
.shippingTableHead { .shippingTableHead {
display: table-header-group; display: table-header-group;
@ -304,6 +314,21 @@
display: grid; display: grid;
grid-template-columns: 20% 15% 65%; grid-template-columns: 20% 15% 65%;
} }
@media screen and (min-width: 1025px) and (max-width: 1100px) {
.shippingTableRow {
grid-template-columns: 25% 20% 65%;
}
}
@media screen and (min-width: 461px) and (max-width: 768px) {
.shippingTableRow {
grid-template-columns: 32% 25% 43%;
}
}
@media screen and (max-width: 460px) {
.shippingTableRow {
grid-template-columns: 37% 25% 38%;
}
}
.shippingTableCellDeliveryName, .shippingTableCellDeliveryName,
.shippingTableCellDeliveryName { .shippingTableCellDeliveryName {
@ -329,7 +354,12 @@
display: flex; display: flex;
align-items: center; align-items: center;
color: #AFAFAF; color: #AFAFAF;
padding: 0 0 15px 0; padding: 0;
}
.shippingTableBody {
display: grid;
gap: 16px;
} }
.shippingTableRadioBtn { .shippingTableRadioBtn {
@ -418,6 +448,17 @@
height: 40px; height: 40px;
margin-bottom: 8px; margin-bottom: 8px;
} }
@media screen and (min-width: 1920px) {
.productDescriptionTitle {
font-size: 32px;
margin-bottom: 16px;
}
}
@media screen and (max-width: 1024px) {
.productDescriptionTitle {
font-size: 20px;
}
}
.productDescriptionText { .productDescriptionText {
font-weight: 400; font-weight: 400;
@ -425,6 +466,19 @@
line-height: 22px; line-height: 22px;
color: #929292; color: #929292;
} }
@media screen and (min-width: 1920px) {
.productDescriptionText {
font-size: 18px;
line-height: 25px;
}
}
@media screen and (max-width: 1024px) {
.productDescriptionText {
font-size: 14px;
line-height: 19px;
padding-bottom: 16px;
}
}
.listContainer--list-product { .listContainer--list-product {
display: flex; display: flex;

View File

@ -10,6 +10,11 @@
.contentItem { .contentItem {
display: flex; display: flex;
} }
@media screen and (max-width: 1024px) {
.contentItem {
flex-direction: column;
}
}
.listContainer--list-product { .listContainer--list-product {
width: 94.4444%; width: 94.4444%;
@ -28,6 +33,15 @@
width: 92.1875%; width: 92.1875%;
} }
} }
@media screen and (max-width: 1024px) {
.listContainer--list-product {
flex-direction: column;
border-top: 1px solid #BFBFBF;
gap: 16px;
padding-top: 16px;
padding-bottom: 16px;
}
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
.listContainer--list-product { .listContainer--list-product {
width: 79%; width: 79%;
@ -43,6 +57,7 @@
@media screen and (min-width: 1920px) { @media screen and (min-width: 1920px) {
.contentContainer--content-product { .contentContainer--content-product {
width: 69.375%; width: 69.375%;
padding-top: 64px;
} }
} }
@media screen and ((min-width: 769) and (max-width: 1024px)) { @media screen and ((min-width: 769) and (max-width: 1024px)) {
@ -50,6 +65,12 @@
width: 92.1875%; width: 92.1875%;
} }
} }
@media screen and (max-width: 1024px) {
.contentContainer--content-product {
padding-top: 16px;
border-bottom: 1px solid #BFBFBF;
}
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
.contentContainer--content-product { .contentContainer--content-product {
width: 79%; width: 79%;
@ -64,6 +85,11 @@
.listItemActive { .listItemActive {
border-bottom: 2px solid #000000; border-bottom: 2px solid #000000;
} }
@media screen and (max-width: 1024px) {
.listItemActive {
border-bottom: none;
}
}
.listItemActive :last-child { .listItemActive :last-child {
background-color: transparent; background-color: transparent;
color: #000000; color: #000000;
@ -73,6 +99,11 @@
padding-top: 0 !important; padding-top: 0 !important;
padding-bottom: 0 !important; padding-bottom: 0 !important;
} }
@media screen and (min-width: 1920px) {
.listItemActive :last-child {
font-size: 24px;
}
}
.listItemActive :last-child:hover { .listItemActive :last-child:hover {
border-bottom: none; border-bottom: none;
color: #000000; color: #000000;

View File

@ -280,6 +280,13 @@
margin: 16px 0 0 0; margin: 16px 0 0 0;
padding: 0; padding: 0;
border: none; border: none;
@media screen and (max-width: 1024px) {
margin-top: 32px;
}
@media screen and (max-width: 768px) {
padding-top: 16px;
}
} }
.shippingTableHead { .shippingTableHead {
@ -314,6 +321,18 @@
.shippingTableRow { .shippingTableRow {
display: grid; display: grid;
grid-template-columns: 20% 15% 65%; grid-template-columns: 20% 15% 65%;
@media screen and (min-width: 1025px) and (max-width: 1100px) {
grid-template-columns: 25% 20% 65%;
}
@media screen and (min-width: 461px) and (max-width: 768px) {
grid-template-columns: 32% 25% 43%;
}
@media screen and (max-width: 460px) {
grid-template-columns: 37% 25% 38%;
}
} }
.shippingTableCellDeliveryName, .shippingTableCellDeliveryName,
@ -340,7 +359,12 @@
display: flex; display: flex;
align-items: center; align-items: center;
color: #AFAFAF; color: #AFAFAF;
padding: 0 0 15px 0; padding: 0;
}
.shippingTableBody {
display: grid;
gap: 16px;
} }
.shippingTableRadioBtn { .shippingTableRadioBtn {
@ -436,6 +460,15 @@
color: #575757; color: #575757;
height: 40px; height: 40px;
margin-bottom: 8px; margin-bottom: 8px;
@media screen and (min-width: 1920px) {
font-size: 32px;
margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
font-size: 20px;
}
} }
.productDescriptionText { .productDescriptionText {
@ -443,6 +476,17 @@
font-size: 16px; font-size: 16px;
line-height: 22px; line-height: 22px;
color: #929292; color: #929292;
@media screen and (min-width: 1920px) {
font-size: 18px;
line-height: 25px;
}
@media screen and (max-width: 1024px) {
font-size: 14px;
line-height: 19px;
padding-bottom: 16px;
}
} }

View File

@ -1,5 +1,9 @@
.contentItem { .contentItem {
display: flex; display: flex;
@media screen and (max-width: 1024px) {
flex-direction: column;
}
} }
.listContainer--list-product{ .listContainer--list-product{
@ -18,6 +22,14 @@
width: 92.1875%; width: 92.1875%;
} }
@media screen and (max-width: 1024px) {
flex-direction: column;
border-top: 1px solid #BFBFBF;
gap: 16px;
padding-top: 16px;
padding-bottom: 16px;
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
width: 79%; width: 79%;
} }
@ -32,12 +44,18 @@
@media screen and (min-width: 1920px) { @media screen and (min-width: 1920px) {
width: 69.375%; width: 69.375%;
padding-top: 64px;
} }
@media screen and ((min-width: 769) and (max-width: 1024px)) { @media screen and ((min-width: 769) and (max-width: 1024px)) {
width: 92.1875%; width: 92.1875%;
} }
@media screen and (max-width: 1024px) {
padding-top: 16px;
border-bottom: 1px solid #BFBFBF;
}
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
width: 79%; width: 79%;
} }
@ -51,6 +69,10 @@
.listItemActive { .listItemActive {
border-bottom: 2px solid #000000; border-bottom: 2px solid #000000;
@media screen and (max-width: 1024px) {
border-bottom: none;
}
:last-child { :last-child {
background-color: transparent; background-color: transparent;
color: #000000; color: #000000;
@ -60,6 +82,10 @@
padding-top: 0 !important; padding-top: 0 !important;
padding-bottom: 0 !important; padding-bottom: 0 !important;
@media screen and (min-width: 1920px) {
font-size: 24px;
}
&:hover { &:hover {
border-bottom: none; border-bottom: none;
color: #000000; color: #000000;