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

22 lines
278 B
CSS
Raw Normal View History

2020-06-14 14:45:20 +00:00
.big {
width: 256px;
height: 256px;
2020-06-14 11:47:02 +00:00
border: 6px solid var(--dark);
border-radius: 16px;
}
2020-06-14 14:45:20 +00:00
.small {
width: 64px;
height: 64px;
border: 4px solid var(--lightDark);
border-radius: 8px;
2020-06-14 11:47:02 +00:00
}
@media screen and (max-width: 1440px) {
2020-06-14 14:45:20 +00:00
.big {
2020-06-14 11:47:02 +00:00
display: none;
}
}