Template:Storage grid/styles.css: Difference between revisions
From Space Station 14 Wiki
Created page with ".storage-grid { display: grid; }" |
removed hardcoded size in favor of a var |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.storage-grid { | .storage-grid { | ||
display: grid; | display: grid; | ||
width: fit-content; | |||
} | |||
.storage-grid > * { | |||
width: var(--s); | |||
height: var(--s); | |||
} | |||
.storage-grid > *.f { } | |||
.storage-grid > *.f img { | |||
width: 100%; | |||
filter: grayscale(75%) saturate(75%) opacity(23%); | |||
} | } |