mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 13:49:22 -05:00
45 lines
774 B
CSS
45 lines
774 B
CSS
.badges__container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: var(--s-2);
|
|
background-color: var(--bg-badge);
|
|
border-radius: var(--rounded);
|
|
gap: var(--s-6);
|
|
}
|
|
|
|
.badges__small-badges {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.badges__explanation {
|
|
color: var(--theme);
|
|
font-weight: var(--semi-bold);
|
|
text-align: center;
|
|
}
|
|
|
|
.badges__owners {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
padding: 0;
|
|
font-size: var(--fonts-sm);
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.badges__owners > li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
line-height: 1.1;
|
|
list-style: none;
|
|
}
|
|
|
|
.badges__count {
|
|
color: var(--theme-vibrant);
|
|
font-size: var(--fonts-xs);
|
|
}
|