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

From Space Station 14 Wiki
(layout changes)
(layout changes)
Line 7: Line 7:


     box-sizing: border-box;
     box-sizing: border-box;
     /* set in module */
     width: 30rem;
    /* min-width: */
     max-width: 100%;
     width: fit-content;
      
      
     border: 1px solid var(--border-color);
     border: 1px solid var(--border-color);
     margin: .25rem 0;
     margin: .25rem 0;
}
.item-recipe * {
    box-sizing: border-box;
}
}


Line 35: Line 38:
     flex-direction: row;
     flex-direction: row;
     align-items: center;
     align-items: center;
    gap: .2rem;


     width: 100%;
     width: 100%;
     padding: var(--padding);
     padding: var(--padding);
   
    min-height: 6rem;
}
}


/* item recipe → content → text content */
/* item recipe → content → text content */
.item-recipe-text-content {
.item-recipe-text-content {
     display: grid;
     /* remove p margin */
     grid-template-columns: 10rem max-content max-content max-content;
     margin: 0;  
     grid-template-rows: 1fr;
     text-align: center;
}
}


Line 50: Line 56:
/* item recipe → content → text content → product  */
/* item recipe → content → text content → product  */
.item-recipe-product {
.item-recipe-product {
    grid-area: 1 / 1 / 2 / 2;
     display: inline-block;
     display: inline-block;
     max-width: 10rem;
     max-width: 10rem;
    text-align: end;
}
}


/* item recipe → content → text content → method  */
/* item recipe → content → text content → method  */
.item-recipe-method {
.item-recipe-method {
    grid-area: 1 / 2 / 2 / 3;
     /* needed to position the complete time element */
     /* needed to position the complete time element */
     position: relative;
     position: relative;
Line 100: Line 103:
/* item recipe → content → text content → method → supplementary text (left) */
/* item recipe → content → text content → method → supplementary text (left) */
.item-recipe .recipe-supplementary-text-left {
.item-recipe .recipe-supplementary-text-left {
grid-area: 1 / 3 / 2 / 4;
}
}


/* item recipe → content → text content → method → supplementary text (right) */
/* item recipe → content → text content → method → supplementary text (right) */
.item-recipe .recipe-supplementary-text-right {
.item-recipe .recipe-supplementary-text-right {
grid-area: 1 / 4 / 2 / 5;
}
}



Revision as of 05:34, 2 September 2024

/* item recipe */
.item-recipe {
    --padding: 0.4rem;

	display: flex;
    flex-direction: column;

    box-sizing: border-box;
    width: 30rem;
    max-width: 100%;
    
    border: 1px solid var(--border-color);
    margin: .25rem 0;
}

.item-recipe * {
    box-sizing: border-box;
}

/* 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: var(--padding);
    
    min-height: 6rem;
}

/* item recipe → content → text content */
.item-recipe-text-content {
    /* remove p margin */
    margin: 0; 
    text-align: center;
}


/* item recipe → content → text content → product  */
.item-recipe-product {
    display: inline-block;
    max-width: 10rem;
    text-align: end;
}

/* item recipe → content → text content → method  */
.item-recipe-method {
    /* needed to position the complete time element */
    position: relative;

    /* disable wrapping so it aligns with the complete time perfectly */
    white-space: nowrap;
}

/* item recipe → content → text content → method → complete time  */
.item-recipe-method .item-recipe-complete-time {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 100%);
    padding-top: 0.5em;
    color: gray;
    font-size: small;
}


/* item recipe → content → text content → method → complete time → icon  */
.item-recipe-method .item-recipe-complete-time::before {
    --image-size: .7em;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAICAYAAAA1BOUGAAAAAXNSR0IArs4c6QAAAGNJREFUCJl1jlsNwCAQBOeaauhDDaLQgRU8nAQUoOCSc0B/WkJpOl97mc3mhJtSSgNwd0IIwiweVLV9xJhVtS3uzh/LeBzn2SfNjNXMuty3TZjJOb8eSik1ABkLtVYAYowCcAGDkzDCq/YM/QAAAABJRU5ErkJggg==');
    width: var(--image-size);
    height: var(--image-size);
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    image-rendering: pixelated;
    display: inline-block;
    margin-right: 0.2em;
}

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

/* item recipe → content → text content → method → supplementary text (left) */
.item-recipe .recipe-supplementary-text-left {
}

/* item recipe → content → text content → method → supplementary text (right) */
.item-recipe .recipe-supplementary-text-right {
}

/* 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;
	
	padding: var(--padding);
	
	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;
}