Module:InfoboxNeue/styles.css: Difference between revisions
From Amaranth Legacy, available at amaranth-legacy.community
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* infobox wrapper */ |
|||
.infobox { |
.infobox { |
||
/* limit the width to 300px */ |
|||
margin-bottom: var(--space-md); |
|||
width: 100%; |
width: 100%; |
||
max-width: 300px; |
max-width: 300px; |
||
/* separate this from the body */ |
|||
border: 1px solid var(--border-color-base); |
|||
margin-bottom: var(--space-md); |
|||
/* pass through the background when this isn't open */ |
|||
background-color: transparent; |
background-color: transparent; |
||
font-size: var(--font-size-small); |
|||
line-height: var(--line-height-sm); |
|||
box-sizing: content-box; |
|||
} |
} |
||
.infobox[open] { |
.infobox[open] { |
||
/* set the background and border when this is open */ |
|||
background-color: var(--color-surface-2); |
background-color: var(--color-surface-2); |
||
border: 1px solid var(--border-color-base); |
|||
} |
} |
||
.infobox__title { |
|||
.infobox > summary { |
|||
/* add some padding */ |
|||
list-style: none; |
|||
padding: var(--space-sm) var(--space-md); |
|||
} |
|||
/* separate from the rest of the infobox */ |
|||
margin-bottom: var(--space-xs); |
|||
.infobox > summary::marker { |
|||
/* set the cursor when hovering to hint to the user */ |
|||
display: none; |
|||
} |
|||
.infobox__content { |
|||
position: relative; |
|||
} |
|||
.infobox__image { |
|||
position: relative; |
|||
} |
|||
.infobox__image img { |
|||
/* Prevent overflow */ |
|||
max-width: 100%; |
|||
height: auto; |
|||
} |
|||
/* Provide background color for transparent SVGs */ |
|||
.infobox__image img[src$=".svg"] { |
|||
background: #eaecf0; |
|||
} |
|||
.infobox__image-upload { |
|||
position: absolute; |
|||
bottom: var(--space-md); |
|||
left: 0; |
|||
right: 0; |
|||
z-index: 1; |
|||
} |
|||
.infobox__image-upload > a { |
|||
display: flex; |
|||
margin: var(--space-md); |
|||
padding: var(--space-xs) var(--space-sm); |
|||
border-radius: var(--border-radius--small); |
|||
background: var(--color-surface-3); |
|||
color: var(--color-base--emphasized); |
|||
font-weight: var(--font-weight-medium); |
|||
text-decoration: none; |
|||
justify-content: center; |
|||
align-items: center; |
|||
gap: var(--space-xs); |
|||
} |
|||
.infobox__image-upload > a .citizen-ui-icon { |
|||
width: 1rem; |
|||
height: 1rem; |
|||
} |
|||
.infobox__image-upload > a:hover { |
|||
background: var(--color-surface-2--hover); |
|||
} |
|||
.infobox__image-upload > a:active { |
|||
background: var(--color-surface-2--active); |
|||
} |
|||
.infobox__snippet, |
|||
.infobox__header, |
|||
.infobox__sectionHeader, |
|||
.infobox__sectionContent { |
|||
padding-left: var(--space-md); |
|||
padding-right: var(--space-md); |
|||
} |
|||
.infobox__snippet { |
|||
position: relative; |
|||
z-index: 1; |
|||
padding-top: var(--space-sm); |
|||
padding-bottom: var(--space-sm); |
|||
background-color: var(--color-surface-2); |
|||
display: flex; |
|||
gap: var(--space-xs); |
|||
align-items: center; |
|||
white-space: nowrap; |
|||
cursor: pointer; |
cursor: pointer; |
||
/* |
/* don't highlight the text on click */ |
||
user-select: none; |
user-select: none; |
||
} |
|||
.infobox__snippet:hover { |
|||
background-color: var(--background-color-quiet--hover); |
|||
} |
|||
/* Might as well steal from skin */ |
|||
.infobox__snippet .mw-ui-icon-wikimedia-collapse { |
|||
--transform-rotate-collapse: rotate3d(1, 0, 0, 180deg); |
|||
--size-icon: var(--font-size-small); |
|||
width: var(--font-size-small); |
|||
height: var(--font-size-small); |
|||
flex-shrink: 0; |
|||
transition: var(--transition-hover); |
|||
transition-property: transform; |
|||
transform: var(--transform-rotate-collapse); |
|||
} |
|||
.infobox[open] .infobox__snippet .mw-ui-icon-wikimedia-collapse { |
|||
transform: none; |
|||
} |
|||
.infobox__snippet .infobox__desc { |
|||
max-width: 100%; |
|||
text-overflow: ellipsis; |
|||
overflow: hidden; |
|||
font-size: var(--font-size-small); |
|||
} |
|||
.infobox__indicators { |
|||
display: flex; |
|||
padding: var(--space-xs); |
|||
gap: var(--space-xxs); |
|||
} |
|||
.infobox__indicator { |
|||
padding: var(--space-xxs) var(--space-xs); |
|||
background: var(--color-surface-2); |
|||
color: var(--color-base); |
|||
border-radius: var(--border-radius--small); |
|||
line-height: var(--line-height-xs); |
|||
margin: 0 auto; |
|||
} |
|||
.infobox__indicator .infobox__data { |
|||
font-size: var(--font-size-x-small); |
|||
font-weight: var(--font-weight-normal); |
|||
letter-spacing: 0.025em; |
|||
text-align: center; |
|||
} |
|||
/* TODO: Add support for multiple badges */ |
|||
.infobox__indicator.infobox__indicator--nopadding { |
|||
padding: 0; |
|||
} |
|||
.infobox__indicator.infobox__indicator--red { |
|||
background-color: var(--background-color-destructive-subtle); |
|||
color: var(--color-destructive); |
|||
} |
|||
.infobox__indicator.infobox__indicator--yellow { |
|||
background-color: var(--background-color-warning-subtle); |
|||
color: var(--color-warning); |
|||
} |
|||
.infobox__indicator.infobox__indicator--green { |
|||
background-color: var(--background-color-success-subtle); |
|||
color: var(--color-success); |
|||
} |
|||
.infobox__header, |
|||
.infobox__sectionHeader { |
|||
line-height: var(--line-height-xs); |
|||
} |
|||
.infobox__header { |
|||
margin-bottom: var(--space-lg); |
|||
display: flex; |
|||
gap: var(--space-sm); |
|||
} |
|||
.infobox__snippet { |
|||
justify-content: center; |
|||
text-align: center; |
|||
} |
|||
.infobox__snippet .infobox__desc { |
|||
/* typography */ |
/* typography */ |
||
color: var(--color-base--emphasized); |
|||
font-size: var(--font-size-xx-large); |
font-size: var(--font-size-xx-large); |
||
text-align: center; |
|||
white-space: normal; |
white-space: normal; |
||
/* make this a flexbox */ |
/* make this a flexbox */ |
||
| Line 196: | Line 35: | ||
justify-content: center; |
justify-content: center; |
||
gap: var(--space-md); |
gap: var(--space-md); |
||
/* only grow */ |
|||
flex: 1 0 auto; |
|||
} |
} |
||
.infobox__title:hover { |
|||
/* lines around the header */ |
|||
/* change the background color on hover */ |
|||
.infobox__snippet .infobox__desc::before, |
|||
background-color: var(--background-color-quiet--hover); |
|||
.infobox__snippet .infobox__desc::after { |
|||
} |
|||
/* lines around the titles */ |
|||
.infobox__title::before, |
|||
.infobox__title::after, |
|||
.infobox__sectionTitle::before, |
|||
.infobox__sectionTitle::after { |
|||
content: ""; |
content: ""; |
||
height: 1px; |
height: 1px; |
||
| Line 210: | Line 54: | ||
} |
} |
||
.infobox__title, |
|||
.infobox__snippet .infobox__desc::before { |
|||
.infobox__sectionTitle { |
|||
margin-right: var(--space-md); |
|||
/* make this clearly a title */ |
|||
color: var(--color-base--emphasized); |
|||
font-weight: bold; |
|||
} |
} |
||
.infobox__image img { |
|||
.infobox__snippet .infobox__desc::after { |
|||
/* prevent overflowing */ |
|||
margin-left: var(--space-md); |
|||
object-fit: contain; |
|||
width: 100%; |
|||
height: auto; |
|||
} |
} |
||
.infobox__image img[src$=".svg"] { |
|||
.infobox__section, |
|||
/* background color for transparent SVGs */ |
|||
.infobox__sectionHeader, |
|||
background: #eaecf0; |
|||
.infobox__sectionContent { |
|||
margin-top: var(--space-md); |
|||
} |
} |
||
.infobox__caption { |
|||
.infobox__title, |
|||
/* pad this */ |
|||
.infobox__sectionTitle { |
|||
padding-top: var(--space-md); |
|||
padding-bottom: var(--space-md); |
|||
/* typography */ |
|||
color: var(--color-subtle); |
|||
font-size: var(--font-size-small); |
|||
font-weight: normal; |
|||
line-height: var(--line-height-sm); |
|||
text-align: center; |
|||
/* center this horizontally */ |
|||
margin: 0 auto; |
|||
} |
} |
||
.infobox__caption, |
|||
.infobox__title { |
|||
.infobox__section { |
|||
font-size: var(--font-size-x-large); |
|||
/* pad horizontally */ |
|||
} |
|||
padding-left: var(--space-md); |
|||
padding-right: var(--space-md); |
|||
.infobox__sectionSubtitle { |
|||
margin-top: 2px; |
|||
} |
} |
||
.infobox__section + .infobox__section { |
.infobox__section + .infobox__section { |
||
margin |
/* margin between sections */ |
||
margin-top: var(--space-lg); |
|||
} |
} |
||
/* Use padding to prevent margin collapse when there is no footer */ |
|||
.infobox__content > .infobox__section:last-child { |
.infobox__content > .infobox__section:last-child { |
||
/* don't bottom out at the last section */ |
|||
margin-bottom: 0; |
margin-bottom: 0; |
||
padding-bottom: var(--space-md); |
padding-bottom: var(--space-md); |
||
} |
|||
.infobox__sectionTitle { |
|||
font-size: var(--font-size-medium); |
|||
display: flex; |
|||
align-items: center; |
|||
gap: var(--space-md); |
|||
} |
} |
||
.infobox__sectionTitle { |
.infobox__sectionTitle { |
||
/* typography */ |
/* typography */ |
||
font-size: var(--font-size-large); |
|||
text-align: center; |
text-align: center; |
||
/* make this a flexbox */ |
/* make this a flexbox */ |
||
| Line 266: | Line 117: | ||
/* only shrink */ |
/* only shrink */ |
||
flex: 0 1 auto; |
flex: 0 1 auto; |
||
} |
|||
.infobox__sectionTitle::before, |
|||
.infobox__sectionTitle::after { |
|||
content: ""; |
|||
height: 1px; |
|||
flex: 1 0 2rem; |
|||
background: var(--color-base--emphasized); |
|||
align-self: center; |
|||
} |
|||
.infobox__sectionSubtitle { |
|||
color: var(--color-base--subtle); |
|||
} |
} |
||
| Line 286: | Line 124: | ||
} |
} |
||
/* |
/* section item labels */ |
||
.infobox__section .infobox__item |
.infobox__section .infobox__item .infobox__label { |
||
white-space: break-spaces; |
|||
} |
|||
/* fix text overflow */ |
|||
.infobox__section .infobox__item > .infobox__data > * { |
|||
display: inline-block; |
|||
word-break: break-word; |
|||
margin-block: 0; |
|||
} |
|||
.infobox__item { |
|||
display: grid; |
|||
gap: 2px var(--space-xs); |
|||
grid-auto-rows: max-content; |
|||
} |
|||
.infobox__item--hasIcon { |
|||
display: flex; |
|||
align-items: center; |
|||
column-gap: var(--space-sm); |
|||
} |
|||
.infobox__badge { |
|||
place-content: center; |
|||
text-align: center; |
|||
box-shadow: inset 0 0 0 1px var(--border-color-base); |
|||
border-radius: var(--border-radius--medium); |
|||
padding: var(--space-xs) var(--space-sm); |
|||
font-weight: var(--font-weight-medium); |
|||
background-color: var(--color-surface-1); |
|||
} |
|||
.infobox__desc, |
|||
.infobox__label { |
|||
color: var(--color-base--subtle); |
color: var(--color-base--subtle); |
||
font-size: var(--font-size-x-small); |
|||
} |
|||
.infobox__label { |
|||
letter-spacing: 0.05em; |
|||
} |
|||
.infobox__grid--row .infobox__label, |
|||
.infobox__grid--row .infobox__desc { |
|||
font-size: var(--font-size-small); |
font-size: var(--font-size-small); |
||
} |
|||
.infobox__data { |
|||
font-weight: var(--font-weight-medium); |
|||
} |
|||
.infobox__icon img { |
|||
filter: var(--filter-invert); |
|||
opacity: var(--opacity-icon-base); |
|||
} |
|||
.infobox__itemButton { |
|||
position: relative; |
|||
padding: var(--space-sm) var(--space-md); |
|||
line-height: var(--line-height-sm); |
line-height: var(--line-height-sm); |
||
gap: 0; |
|||
} |
} |
||
/* section item content */ |
|||
.infobox__itemButton:hover { |
|||
.infobox__section .infobox__item .infobox__content { |
|||
background-color: var(--background-color-quiet--hover); |
|||
font-size: var(--font-size-small); |
|||
line-height: var(--line-height-md); |
|||
} |
} |
||
/* fix section content newline handling */ |
|||
.infobox__itemButton:hover .infobox__itemButtonArrow { |
|||
.infobox__section .infobox__item > .infobox__content { |
|||
transform: rotate(90deg) translateY(-4px); |
|||
white-space: break-spaces; |
|||
} |
} |
||
/* fix section content overflow */ |
|||
.infobox__itemButton:active { |
|||
.infobox__section .infobox__item > .infobox__content > * { |
|||
background-color: var(--background-color-quiet--active); |
|||
display: inline-block; |
|||
} |
|||
word-break: break-word; |
|||
margin-block: 0; |
|||
.infobox__itemButton .infobox__text { |
|||
flex-grow: 1; |
|||
} |
|||
.infobox__itemButton .infobox__data { |
|||
color: var(--color-base--emphasized); |
|||
} |
|||
.infobox__itemButtonLink a { |
|||
position: absolute; |
|||
inset: 0; |
|||
opacity: 0; |
|||
} |
|||
.infobox__itemButton .infobox__icon { |
|||
margin-right: var(--space-sm); |
|||
} |
|||
.infobox__itemButton .infobox__icon img { |
|||
width: 1.25rem; |
|||
height: 1.25rem; |
|||
} |
|||
.infobox__itemButtonArrow { |
|||
width: 1rem; |
|||
height: 1rem; |
|||
transition: var(--transition-hover); |
|||
transform: rotate(90deg); |
|||
} |
|||
.infobox__footer { |
|||
margin-top: var(--space-lg); |
|||
border-top: 1px solid var(--border-color-base); |
|||
background-color: var(--color-surface-1); |
|||
border-bottom-left-radius: var(--border-radius--medium); |
|||
border-bottom-right-radius: var(--border-radius--medium); |
|||
} |
|||
.infobox__footer > .infobox__section { |
|||
margin: 0; |
|||
padding: var(--space-md); |
|||
display: grid; |
|||
gap: var(--space-xxs); |
|||
} |
|||
.infobox__button { |
|||
position: relative; |
|||
border-bottom-left-radius: var(--border-radius--medium); |
|||
border-bottom-right-radius: var(--border-radius--medium); |
|||
padding: var(--space-sm) var(--space-md); |
|||
background-color: var(--color-primary); |
|||
cursor: pointer; |
|||
} |
|||
.infobox__button:hover { |
|||
background-color: var(--color-primary--hover); |
|||
} |
|||
.infobox__buttonLabel { |
|||
display: flex; |
|||
justify-content: center; |
|||
align-items: center; |
|||
gap: var(--space-xs); |
|||
color: #fff; |
|||
font-weight: var(--font-weight-medium); |
|||
} |
|||
/* Fake button with link element */ |
|||
.infobox__buttonLink { |
|||
position: absolute; |
|||
top: 0; |
|||
bottom: 0; |
|||
left: 0; |
|||
right: 0; |
|||
} |
|||
.infobox__buttonLink a { |
|||
display: block; |
|||
height: 100%; |
|||
font-size: 0; |
|||
} |
|||
.infobox__buttonCard { |
|||
position: absolute; |
|||
top: 100%; |
|||
left: 0; |
|||
right: 0; |
|||
z-index: -1; |
|||
border: 1px solid var(--border-color-base); |
|||
background-color: var(--color-surface-1); |
|||
border-radius: var(--border-radius--medium); |
|||
box-shadow: var(--box-shadow-dialog); |
|||
opacity: 0; |
|||
transition: var(--transition-menu); |
|||
transition-property: opacity, transform; |
|||
visibility: hidden; |
|||
transform: translateY(-20px); |
|||
} |
|||
.infobox__button:hover > .infobox__buttonCard { |
|||
z-index: 10; |
|||
opacity: 1; |
|||
visibility: visible; |
|||
transform: none; |
|||
cursor: auto; |
|||
} |
|||
.infobox__linkButton a { |
|||
padding: var(--space-xxs) var(--space-xs); |
|||
display: block; |
|||
border-radius: var(--border-radius--small); |
|||
text-decoration: none !important; |
|||
} |
|||
/* Hide external URL icon */ |
|||
.infobox__linkButton a:after { |
|||
content: none; |
|||
} |
|||
.infobox__linkButton a:hover { |
|||
background-color: var(--background-color-quiet--hover); |
|||
} |
|||
.infobox__linkButton a:active { |
|||
background-color: var(--background-color-quiet--active); |
|||
} |
|||
.infobox__section--linkButtons > .infobox__sectionContent { |
|||
margin-bottom: var(--space-md); |
|||
} |
|||
.infobox__section--linkButtons .infobox__data { |
|||
margin-top: var(--space-xxs); |
|||
/* negative space-xs */ |
|||
margin-left: -8px; |
|||
/* negative space-xs */ |
|||
margin-right: -8px; |
|||
display: flex; |
|||
flex-wrap: wrap; |
|||
align-items: baseline; |
|||
} |
|||
.infobox__buttonLabel img[src$=".svg"] { |
|||
filter: invert(1); |
|||
} |
} |
||
/* on phones, center the infobox */ |
|||
@media only screen and (max-width: 639px) { |
@media only screen and (max-width: 639px) { |
||
.infobox { |
.infobox { |
||
| Line 514: | Line 155: | ||
margin-left: auto; |
margin-left: auto; |
||
} |
} |
||
} |
|||
.infobox__section--actions .infobox__sectionContent { |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
} |
|||
/* TODO: Remove when footer is removed */ |
|||
.infobox__section--hasBackground + .infobox__section--hasBackground, |
|||
.infobox__section--hasBackground + .infobox__footer { |
|||
margin-top: 0; |
|||
} |
|||
.infobox__section--hasBackground .infobox__sectionContent { |
|||
margin: 0; |
|||
} |
|||
.infobox__section--metadata .infobox__sectionContent { |
|||
padding: var(--space-md); |
|||
background: var(--color-surface-1); |
|||
line-height: var(--line-height-xs); |
|||
gap: var(--space-xxs); |
|||
} |
|||
.infobox__section--metadata .infobox__label, |
|||
.infobox__section--metadata .infobox__data { |
|||
font-size: var(--font-size-x-small); |
|||
} |
|||
.infobox__section--metadata .infobox__data { |
|||
word-break: break-word; |
|||
font-family: var(--font-family-monospace); |
|||
} |
} |
||
| Line 599: | Line 208: | ||
.infobox__grid--space-between { |
.infobox__grid--space-between { |
||
justify-content: space-between; |
justify-content: space-between; |
||
} |
|||
/* FloatingUI styles */ |
|||
.infobox__indicator--nopadding .ext-floatingui-reference { |
|||
padding: var(--space-xxs) var(--space-xs); |
|||
} |
|||
/* Tabber styles */ |
|||
.infobox__section--tabber > .infobox__sectionHeader { |
|||
margin-bottom: var(--space-xxs); |
|||
} |
|||
.infobox__section--tabber > .infobox__sectionContent { |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
} |
|||
/* Spacing is handled by tabber */ |
|||
.infobox__section--tabber .infobox__sectionContent { |
|||
margin-top: 0; |
|||
margin-bottom: 0; |
|||
} |
|||
.infobox__section--tabber .tabber .infobox__section { |
|||
margin-top: var(--space-sm); |
|||
margin-bottom: 0; |
|||
} |
|||
/* Increase top margin for nested tabber section */ |
|||
.infobox__section--tabber .infobox__section.infobox__section--tabber { |
|||
margin-top: var(--space-xl); |
|||
} |
|||
.infobox__section--tabber .tabber__header { |
|||
margin-left: var(--space-xs); |
|||
margin-right: var(--space-xs); |
|||
box-shadow: none; |
|||
} |
|||
/* Match padding in the rest of the infobox */ |
|||
.infobox__section--tabber .tabber__tab { |
|||
margin-left: var(--space-xs); |
|||
margin-right: var(--space-xs); |
|||
padding-left: 0; |
|||
padding-right: 0; |
|||
} |
} |
||
Revision as of 01:33, December 31, 2024
/* infobox wrapper */
.infobox {
/* limit the width to 300px */
width: 100%;
max-width: 300px;
/* separate this from the body */
margin-bottom: var(--space-md);
/* pass through the background when this isn't open */
background-color: transparent;
}
.infobox[open] {
/* set the background and border when this is open */
background-color: var(--color-surface-2);
border: 1px solid var(--border-color-base);
}
.infobox__title {
/* add some padding */
padding: var(--space-sm) var(--space-md);
/* separate from the rest of the infobox */
margin-bottom: var(--space-xs);
/* set the cursor when hovering to hint to the user */
cursor: pointer;
/* don't highlight the text on click */
user-select: none;
/* typography */
font-size: var(--font-size-xx-large);
text-align: center;
white-space: normal;
/* make this a flexbox */
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
gap: var(--space-md);
}
.infobox__title:hover {
/* change the background color on hover */
background-color: var(--background-color-quiet--hover);
}
/* lines around the titles */
.infobox__title::before,
.infobox__title::after,
.infobox__sectionTitle::before,
.infobox__sectionTitle::after {
content: "";
height: 1px;
flex: 1 0 2rem;
background: var(--color-base--emphasized);
align-self: center;
}
.infobox__title,
.infobox__sectionTitle {
/* make this clearly a title */
color: var(--color-base--emphasized);
font-weight: bold;
}
.infobox__image img {
/* prevent overflowing */
object-fit: contain;
width: 100%;
height: auto;
}
.infobox__image img[src$=".svg"] {
/* background color for transparent SVGs */
background: #eaecf0;
}
.infobox__caption {
/* pad this */
padding-top: var(--space-md);
padding-bottom: var(--space-md);
/* typography */
color: var(--color-subtle);
font-size: var(--font-size-small);
font-weight: normal;
line-height: var(--line-height-sm);
text-align: center;
/* center this horizontally */
margin: 0 auto;
}
.infobox__caption,
.infobox__section {
/* pad horizontally */
padding-left: var(--space-md);
padding-right: var(--space-md);
}
.infobox__section + .infobox__section {
/* margin between sections */
margin-top: var(--space-lg);
}
.infobox__content > .infobox__section:last-child {
/* don't bottom out at the last section */
margin-bottom: 0;
padding-bottom: var(--space-md);
}
.infobox__sectionTitle {
/* typography */
font-size: var(--font-size-large);
text-align: center;
/* make this a flexbox */
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
gap: var(--space-md);
/* only shrink */
flex: 0 1 auto;
}
.infobox__sectionContent {
display: grid;
gap: var(--space-sm);
}
/* section item labels */
.infobox__section .infobox__item .infobox__label {
color: var(--color-base--subtle);
font-size: var(--font-size-small);
line-height: var(--line-height-sm);
}
/* section item content */
.infobox__section .infobox__item .infobox__content {
font-size: var(--font-size-small);
line-height: var(--line-height-md);
}
/* fix section content newline handling */
.infobox__section .infobox__item > .infobox__content {
white-space: break-spaces;
}
/* fix section content overflow */
.infobox__section .infobox__item > .infobox__content > * {
display: inline-block;
word-break: break-word;
margin-block: 0;
}
/* on phones, center the infobox */
@media only screen and (max-width: 639px) {
.infobox {
margin-right: auto;
margin-left: auto;
}
}
/* CSS grid utility classes */
.infobox__grid--row {
grid-auto-flow: column;
}
.infobox__grid--cols-1 {
grid-template-columns: minmax(0, 1fr);
}
.infobox__grid--cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.infobox__grid--cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.infobox__grid--cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.infobox__grid--cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.infobox__grid--cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.infobox__grid--col-span-2 {
grid-column: span 2;
}
.infobox__grid--col-span-3 {
grid-column: span 3;
}
.infobox__grid--col-span-4 {
grid-column: span 4;
}
.infobox__grid--col-span-5 {
grid-column: span 5;
}
.infobox__grid--col-span-6 {
grid-column: span 6;
}
.infobox__grid--space-between {
justify-content: space-between;
}