This commit is contained in:
Roman Pyrih
2025-12-16 14:48:07 +01:00
parent 554282bcae
commit 39a2a1b061
3 changed files with 25 additions and 7 deletions

View File

@@ -457,7 +457,7 @@
right: 0; right: 0;
bottom: 0; bottom: 0;
z-index: 1; z-index: 1;
padding: 40px; padding: 35px;
} }
.product-card > .e-con-inner .product-card-data .product-card-data-head { .product-card > .e-con-inner .product-card-data .product-card-data-head {
padding-bottom: 0; padding-bottom: 0;
@@ -1105,8 +1105,13 @@
z-index: 1; z-index: 1;
} }
.product-table {
background: #eeeeee;
padding: 30px;
}
.product-table table { .product-table table {
background-color: transparent; background-color: transparent;
margin: 0;
} }
.product-table table tr { .product-table table tr {
background-color: transparent; background-color: transparent;
@@ -1118,12 +1123,15 @@
font-family: "Plus Jakarta Sans", Sans-serif; font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px; font-size: 14px;
padding: 12px 5px; padding: 12px 5px;
width: 50%;
} }
.product-table table tr td:nth-child(1) { .product-table table tr td:nth-child(1) {
font-weight: 600; font-weight: 600;
width: 65%;
} }
.product-table table tr td:nth-child(2) { .product-table table tr td:nth-child(2) {
font-weight: 400; font-weight: 400;
width: 35%; }
figure figcaption {
text-align: center;
}/*# sourceMappingURL=custom.css.map */ }/*# sourceMappingURL=custom.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -616,7 +616,7 @@
bottom: 0; bottom: 0;
z-index: 1; z-index: 1;
padding: 40px; padding: 35px;
.product-card-data-head { .product-card-data-head {
padding-bottom: 0; padding-bottom: 0;
@@ -1455,8 +1455,13 @@
} }
.product-table { .product-table {
background: #eeeeee;
padding: 30px;
table { table {
background-color: transparent; background-color: transparent;
margin: 0;
tr { tr {
background-color: transparent; background-color: transparent;
border-bottom: 1px solid #181c1d; border-bottom: 1px solid #181c1d;
@@ -1468,16 +1473,21 @@
font-family: 'Plus Jakarta Sans', Sans-serif; font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px; font-size: 14px;
padding: 12px 5px; padding: 12px 5px;
width: 50%;
&:nth-child(1) { &:nth-child(1) {
font-weight: 600; font-weight: 600;
width: 65%;
} }
&:nth-child(2) { &:nth-child(2) {
font-weight: 400; font-weight: 400;
width: 35%;
} }
} }
} }
} }
} }
figure {
figcaption {
text-align: center;
}
}