mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 04:02:40 -05:00
55 lines
803 B
CSS
55 lines
803 B
CSS
.container {
|
|
padding: var(--s-2);
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1-5);
|
|
}
|
|
|
|
.maps {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.mapEntry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-0-5);
|
|
width: 90px;
|
|
}
|
|
|
|
.stageImage {
|
|
border-radius: var(--radius-box);
|
|
}
|
|
|
|
.mapLabel {
|
|
font-size: var(--font-2xs);
|
|
color: var(--color-text-high);
|
|
font-weight: var(--weight-semi);
|
|
text-align: center;
|
|
}
|
|
|
|
.modeEntry {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
font-size: var(--font-sm);
|
|
font-weight: var(--weight-semi);
|
|
}
|
|
|
|
.heading {
|
|
font-size: var(--font);
|
|
font-weight: var(--weight-bold);
|
|
margin-block: 0 var(--s-2);
|
|
}
|
|
|
|
.emptyText {
|
|
font-size: var(--font-sm);
|
|
color: var(--color-text-high);
|
|
font-style: italic;
|
|
}
|