Personal-site/components/modules/Avatar.module.css

20 lines
284 B
CSS
Raw Normal View History

2020-06-14 11:47:02 +00:00
.bordered {
border: 6px solid var(--dark);
border-radius: 16px;
}
.absolute {
position: absolute;
max-width: 256px;
max-height: 256px;
top: calc(50vh - 128px);
left: calc(50vw - 128px);
}
@media screen and (max-width: 1440px) {
.absolute {
display: none;
}
}