Template:Item recipe/styles.css: Difference between revisions
From Space Station 14 Wiki
(wip) |
(wip) |
||
Line 3: | Line 3: | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
gap: .2rem; | |||
box-sizing: border-box; | box-sizing: border-box; | ||
Line 10: | Line 11: | ||
border: 1px solid var(--border-color); | border: 1px solid var(--border-color); | ||
margin: .25rem 0; | margin: .25rem 0; | ||
} | } | ||
Line 37: | Line 37: | ||
width: 100%; | width: 100%; | ||
padding: .2rem; | |||
} | } | ||
Line 58: | Line 59: | ||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||
/* item recipe → content → materials */ | /* item recipe → content → materials */ | ||
Line 92: | Line 84: | ||
/* negate margin */ | /* negate margin */ | ||
padding: .4rem; | padding: .4rem; | ||
Revision as of 03:38, 2 September 2024
/* item recipe */
.item-recipe {
display: flex;
flex-direction: column;
gap: .2rem;
box-sizing: border-box;
/* set in module */
/* min-width: */
width: fit-content;
border: 1px solid var(--border-color);
margin: .25rem 0;
}
/* item recipe, vertical layout */
.item-recipe.item-recipe-vertical {
flex-direction: row;
}
/* item recipe, horizontal layout */
.item-recipe.item-recipe-horizontal {
flex-direction: column;
}
/* item recipe, materials only mode */
.item-recipe.materials-only {
border: none;
}
/* item recipe → content */
.item-recipe-content {
display: flex;
flex-direction: row;
align-items: center;
gap: .2rem;
width: 100%;
padding: .2rem;
}
/* item recipe → content → text content */
.item-recipe-text-content {
}
/* item recipe → content → text content → product */
.item-recipe-product {
}
/* item recipe → content → text content → method */
.item-recipe-method {
white-space: nowrap;
}
/* item recipe → content → text content → method → supplementary text */
.item-recipe .recipe-supplementary-text {
color: gray;
white-space: nowrap;
}
/* item recipe → content → materials */
.item-recipe .item-recipe-materials {
display: flex;
gap: .15em;
}
/* item recipe, vertical layout → content → materials */
.item-recipe.item-recipe-vertical .item-recipe-materials {
flex-direction: row;
}
/* item recipe, horizontal layout → content → materials */
.item-recipe.item-recipe-horizontal .item-recipe-materials {
flex-direction: column;
}
/* item recipe → notes */
.item-recipe .item-recipe-notes {
display: flex;
flex-direction: column;
gap: .4em;
box-sizing: border-box;
/* negate margin */
padding: .4rem;
background-color: var(--bg-color-light-x3);
border-top: 1px solid var(--border-color);
}
.item-recipe .item-recipe-notes .item-recipe-note {
font-size: smaller;
}