mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
99 lines
2.0 KiB
CSS
99 lines
2.0 KiB
CSS
.root {
|
|
@apply relative max-h-full w-full box-border overflow-hidden
|
|
bg-no-repeat bg-center bg-cover transition-transform
|
|
ease-linear cursor-pointer inline-block;
|
|
height: 100% !important;
|
|
|
|
&:hover {
|
|
& .productImage {
|
|
transform: scale(1.2625);
|
|
}
|
|
|
|
& .productTitle > span,
|
|
& .productPrice,
|
|
& .wishlistButton {
|
|
@apply bg-secondary text-secondary;
|
|
}
|
|
|
|
&:nth-child(6n + 1) .productTitle > span,
|
|
&:nth-child(6n + 1) .productPrice,
|
|
&:nth-child(6n + 1) .wishlistButton {
|
|
@apply bg-violet text-white;
|
|
}
|
|
|
|
&:nth-child(6n + 5) .productTitle > span,
|
|
&:nth-child(6n + 5) .productPrice,
|
|
&:nth-child(6n + 5) .wishlistButton {
|
|
@apply bg-blue text-white;
|
|
}
|
|
|
|
&:nth-child(6n + 3) .productTitle > span,
|
|
&:nth-child(6n + 3) .productPrice,
|
|
&:nth-child(6n + 3) .wishlistButton {
|
|
@apply bg-pink text-white;
|
|
}
|
|
|
|
&:nth-child(6n + 6) .productTitle > span,
|
|
&:nth-child(6n + 6) .productPrice,
|
|
&:nth-child(6n + 6) .wishlistButton {
|
|
@apply bg-cyan text-white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.wishlistButton {
|
|
@apply top-3 right-3 z-50 absolute bg-accent-9 text-accent-0;
|
|
}
|
|
|
|
.productTitle > span,
|
|
.productPrice {
|
|
@apply transition-colors ease-in-out duration-500;
|
|
}
|
|
|
|
.simple {
|
|
& .productTitle {
|
|
@apply pt-2;
|
|
font-size: 1rem;
|
|
|
|
& span {
|
|
@apply leading-extra-loose;
|
|
}
|
|
}
|
|
|
|
& .productPrice {
|
|
@apply text-sm;
|
|
}
|
|
}
|
|
|
|
.productTitle {
|
|
@apply pt-0 max-w-full w-full leading-extra-loose;
|
|
font-size: 2rem;
|
|
letter-spacing: 0.4px;
|
|
|
|
& span {
|
|
@apply py-4 px-6 bg-primary text-primary font-bold;
|
|
font-size: inherit;
|
|
letter-spacing: inherit;
|
|
box-decoration-break: clone;
|
|
-webkit-box-decoration-break: clone;
|
|
}
|
|
}
|
|
|
|
.productPrice {
|
|
@apply py-4 px-6 bg-primary text-primary font-semibold inline-block text-sm leading-6;
|
|
letter-spacing: 0.4px;
|
|
}
|
|
|
|
.imageContainer {
|
|
@apply flex items-center justify-center;
|
|
overflow: hidden;
|
|
|
|
& > div {
|
|
min-width: 100%;
|
|
}
|
|
}
|
|
|
|
.productImage {
|
|
@apply transform transition-transform duration-500 object-cover scale-120;
|
|
}
|