This commit is contained in:
Roman Pyrih
2026-04-22 15:16:54 +02:00
parent 7483681901
commit f526f866bb
3 changed files with 77 additions and 2 deletions

View File

@@ -108,3 +108,78 @@ p {
}
}
}
.grid-tiles-list {
ul {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
gap: 12px 48px;
@media (max-width: 1024px) {
grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
gap: 12px 24px;
}
li {
padding-top: 12px !important;
padding-bottom: 12px !important;
border-bottom: 1px solid rgb(37, 52, 71);
}
}
}
.product-info-list {
ul {
li {
margin: 0 !important;
padding-top: 12px !important;
padding-bottom: 12px !important;
border-bottom: 1px solid rgb(37, 52, 71);
}
}
}
body .price-table {
&table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
background: #051223;
}
table {
border: none !important;
}
table,
th,
td {
border: none;
}
td {
padding: 24px 0;
background: #051223;
}
tr {
border-bottom: 1px solid rgb(37, 52, 71);
&:hover {
background: #0e2036;
transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
}
thead {
th {
color: rgb(248, 244, 245, 0.5);
font-size: 10px;
letter-spacing: 2.5px;
font-family: 'JetBrains Mono', monospace;
padding: 16px 0;
text-transform: uppercase;
text-align: left;
&:nth-child(3) {
text-align: right;
}
}
}
}