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

From Space Station 14 Wiki
(wip)
(wip)
Line 3: Line 3:
display: grid;
display: grid;
     grid-template-columns: repeat(3, max-content);
     grid-template-columns: repeat(3, max-content);
     grid-template-rows: repeat(2, max-content);
     grid-template-rows: max-content min-content;
    align-items: center;
      
      
     /*display: flex;*/
     /*display: flex;*/

Revision as of 10:45, 1 September 2024

/* item recipe */
.item-recipe {
	display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: max-content min-content;
    align-items: center;
    
    /*display: flex;*/
    /*gap: .2rem;*/
    /*align-items: center;*/
    border: 1px solid var(--border-color);
    width: fit-content;
    padding: .25rem;
    margin: .25rem 0;
}

/* item recipe, vertical layout */
.item-recipe.item-recipe-vertical {
	flex-direction: column;
}

/* item recipe, horizontal layout */
.item-recipe.item-recipe-horizontal {
	flex-direction: row;
}

/* item recipe, materials only mode */
.item-recipe.materials-only {
	border: none;
}

/* item recipe → product  */
.item-recipe-product {
	grid-area: 1 / 1 / 2 / 2;
}

/* item recipe → method  */
.item-recipe-method {
	grid-area: 1 / 2 / 2 / 3;
}

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

/* item recipe → materials  */
.item-recipe .item-recipe-materials {
	grid-area: 1 / 3 / 2 / 4;
	
    display: flex;
    gap: .15em;
}

/* item recipe, vertical layout → materials */
.item-recipe.item-recipe-vertical .item-recipe-materials {
	flex-direction: row;
}

/* item recipe, horizontal layout → materials */
.item-recipe.item-recipe-horizontal .item-recipe-materials {
	flex-direction: column;
}

/* item recipe → notes */
.item-recipe .item-recipe-notes {
	grid-area: 2 / 1 / 3 / 4; 
}