mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
65 lines
953 B
CSS
65 lines
953 B
CSS
.title {
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.day {
|
|
color: var(--color-text-high);
|
|
}
|
|
|
|
.times {
|
|
display: grid;
|
|
column-gap: var(--s-1-5);
|
|
font-weight: var(--semi-bold);
|
|
grid-template-columns: max-content 1fr;
|
|
}
|
|
|
|
.times > time {
|
|
height: 1.25rem;
|
|
}
|
|
|
|
.mapPoolSection {
|
|
display: flex;
|
|
max-width: 32rem;
|
|
flex-direction: column;
|
|
padding: var(--s-2);
|
|
margin: 0 auto;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.createMapListLink {
|
|
display: flex;
|
|
width: max-content;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
font-size: var(--fonts-xs);
|
|
gap: var(--s-1-5);
|
|
}
|
|
|
|
.author {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--color-text-high);
|
|
font-weight: var(--semi-bold);
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.resultsPlayers {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 0;
|
|
gap: var(--s-3);
|
|
list-style: none;
|
|
}
|
|
|
|
.resultsSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.resultsParticipantCount {
|
|
color: var(--color-text-high);
|
|
font-size: var(--fonts-xs);
|
|
}
|