Template:Item recipe/styles.css: Difference between revisions

From Space Station 14 Wiki
(wip)
(wip)
Line 1: Line 1:
/* item recipe container */
/* item recipe */
.item-recipe {
.item-recipe {
display: flex;
display: flex;
flex-direction: row;
flex-direction: row;
}
/* item recipe → supplementary text  */
.recipe-supplementary-text {
color: gray;
}
/* item recipe → materials  */
.item-recipe-materials {
    display: flex;
    flex-direction: row;
    gap: .2rem;
    align-items: center;
    border: 1px solid var(--border-color);
    width: fit-content;
    padding: .25rem;
    margin: .25rem 0;
}
}

Revision as of 07:09, 1 September 2024

/* item recipe */
.item-recipe {
	display: flex;
	flex-direction: row;
}

/* item recipe → supplementary text  */
.recipe-supplementary-text {
	color: gray;
}

/* item recipe → materials  */
.item-recipe-materials {
    display: flex;
    flex-direction: row;
    gap: .2rem;
    align-items: center;
    border: 1px solid var(--border-color);
    width: fit-content;
    padding: .25rem;
    margin: .25rem 0;
}