Files
rm-dr 532cfe58ba
Some checks failed
CI / Check typos (push) Successful in 8s
CI / Clippy (push) Successful in 59s
CI / Check links (push) Failing after 1m32s
CI / Build and test (push) Successful in 1m21s
CI / Build container (push) Has been skipped
CI / Deploy on waypoint (push) Has been skipped
Minor tweaks
2025-11-09 21:20:47 -08:00

33 lines
539 B
SCSS

img {
max-width: 90%;
height: auto;
margin: .2rem;
padding: .2rem;
border-radius: 15px;
border: solid .2rem transparent;
transition: 150ms;
image-rendering: pixelated;
}
img:hover {
border: solid .2rem var(--metaColor);
transform: scale(1.02);
}
.icons {
width: 2.0rem;
height: 2.0rem;
aspect-ratio: 1/1;
display: inline-block;
vertical-align: middle;
color: var(--fgColor);
fill: var(--fgColor);
background-color: transparent;
}
.icons__background:hover {
background-color: transparent;
color: var(--metaColor);
}