mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 15:32:32 +00:00
149 lines
2.1 KiB
CSS
149 lines
2.1 KiB
CSS
.root {
|
|
--row-height: calc(100vh - 80px - 56px);
|
|
@apply grid grid-cols-1 gap-0;
|
|
|
|
@screen lg {
|
|
@apply grid-cols-3 grid-rows-2;
|
|
}
|
|
|
|
& > * {
|
|
@apply row-span-1 bg-transparent box-border overflow-hidden;
|
|
height: 500px;
|
|
max-height: 800px;
|
|
|
|
@screen lg {
|
|
@apply col-span-1;
|
|
height: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.default {
|
|
& > * {
|
|
@apply bg-transparent;
|
|
}
|
|
}
|
|
|
|
.layoutNormal {
|
|
@apply gap-3;
|
|
|
|
& > * {
|
|
min-height: 325px;
|
|
}
|
|
}
|
|
|
|
.layoutA {
|
|
& > *:nth-child(6n + 1),
|
|
& > *:nth-child(6n + 5) {
|
|
@apply row-span-2;
|
|
height: var(--row-height);
|
|
|
|
@screen lg {
|
|
@apply col-span-2;
|
|
}
|
|
}
|
|
|
|
&.filled {
|
|
& > *:nth-child(6n + 1),
|
|
& > *:nth-child(6n + 5) {
|
|
@apply bg-violet;
|
|
}
|
|
|
|
& > *:nth-child(6n + 5) {
|
|
@apply bg-blue;
|
|
}
|
|
|
|
& > *:nth-child(6n + 3) {
|
|
@apply bg-pink;
|
|
}
|
|
|
|
& > *:nth-child(6n + 6) {
|
|
@apply bg-cyan;
|
|
}
|
|
}
|
|
}
|
|
|
|
.layoutB {
|
|
& > *:nth-child(6n + 2),
|
|
& > *:nth-child(6n + 4) {
|
|
@apply row-span-2;
|
|
height: var(--row-height);
|
|
|
|
@screen lg {
|
|
@apply col-span-2;
|
|
}
|
|
}
|
|
|
|
&.filled {
|
|
& > *:nth-child(6n + 2) {
|
|
@apply bg-blue;
|
|
}
|
|
|
|
& > *:nth-child(6n + 4) {
|
|
@apply bg-violet;
|
|
}
|
|
|
|
& > *:nth-child(6n + 3) {
|
|
@apply bg-pink;
|
|
}
|
|
|
|
& > *:nth-child(6n + 6) {
|
|
@apply bg-cyan;
|
|
}
|
|
}
|
|
}
|
|
|
|
.layoutC {
|
|
& > *:nth-child(12n + 1),
|
|
& > *:nth-child(12n + 8) {
|
|
@apply row-span-2;
|
|
height: var(--row-height);
|
|
|
|
@screen lg {
|
|
@apply col-span-2;
|
|
}
|
|
}
|
|
|
|
&.filled {
|
|
& > *:nth-child(12n + 1) {
|
|
@apply bg-violet;
|
|
height: var(--row-height);
|
|
}
|
|
|
|
& > *:nth-child(12n + 8) {
|
|
@apply bg-cyan;
|
|
height: var(--row-height);
|
|
}
|
|
|
|
& > *:nth-child(6n + 3) {
|
|
@apply bg-pink;
|
|
}
|
|
}
|
|
}
|
|
|
|
.layoutD {
|
|
& > *:nth-child(12n + 2),
|
|
& > *:nth-child(12n + 7) {
|
|
@apply row-span-2;
|
|
height: var(--row-height);
|
|
|
|
@screen lg {
|
|
@apply col-span-2;
|
|
}
|
|
}
|
|
|
|
&.filled {
|
|
& > *:nth-child(12n + 2) {
|
|
@apply bg-violet;
|
|
}
|
|
|
|
& > *:nth-child(12n + 7) {
|
|
@apply bg-cyan;
|
|
}
|
|
|
|
& > *:nth-child(6n + 3) {
|
|
@apply bg-pink;
|
|
}
|
|
}
|
|
}
|