This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/pages/about.css

28 lines
No EOL
444 B
CSS

:root {
--avatar-size: 16rem;
}
.avatar-wrapper {
margin-bottom: var(--sizing-sm);
width: 100%;
justify-content: center;
overflow: hidden;
& .interior {
display: flex;
justify-content: center;
overflow: hidden;
& img {
width: var(--avatar-size);
height: var(--avatar-size);
image-rendering: pixelated;
}
}
}
@media screen and (min-width: 768px) {
:root {
--avatar-size: 24rem;
}
}