Files
node-factorio-recipes/components/home/EntityIcon/EntityIcon.module.css
Sebastian Seedorf de95f57b18 Linting
2022-08-18 09:20:00 +02:00

37 lines
665 B
CSS

.span {
background: #ddd;
font-size: 2em;
border: 1px solid white;
display: inline-block;
position: relative;
height: fit-content;
}
.amount {
position: absolute;
inset-inline-end: 0.2em;
inset-block-end: 0;
font-size: 50%;
color: white;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.img {
display: inline-block;
width: 1em;
height: 1em;
margin-inline-end: 0.2em;
}
.noAmount {
margin-inline: 0.1em;
margin-block: 0.1em -0.1em;
}
@media (prefers-color-scheme: dark) {
.span {
border-color: #111111;
background-color: #444;
}
}