This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/assets/styles/pages/about.css

29 lines
No EOL
445 B
CSS

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