mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-21 03:54:14 -05:00
32 lines
633 B
CSS
32 lines
633 B
CSS
.main {
|
|
container-type: inline-size;
|
|
padding: var(--layout-main-padding);
|
|
margin-bottom: var(--s-32);
|
|
min-height: calc(100dvh - var(--layout-nav-height));
|
|
|
|
/* Fill the whole content area (sidebars already excluded by the flex
|
|
layout) while staying a query container, so a descendant can break out
|
|
of the page max-width and size against the full width via cqw units. */
|
|
&[data-main-breakout] {
|
|
max-width: none;
|
|
}
|
|
}
|
|
|
|
.normal {
|
|
width: 100%;
|
|
max-width: 48rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.narrow {
|
|
width: 100%;
|
|
max-width: 24rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.wide {
|
|
width: 100%;
|
|
max-width: 72rem;
|
|
margin-inline: auto;
|
|
}
|