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
2024-10-03 16:08:39 -07:00

29 lines
No EOL
444 B
CSS

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