mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-24 12:29:30 -05:00
67 lines
925 B
CSS
67 lines
925 B
CSS
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.toggleRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.table th,
|
|
.table td {
|
|
padding: var(--s-1) var(--s-2);
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
color: var(--color-text-high);
|
|
font-weight: var(--weight-bold);
|
|
font-size: var(--font-sm);
|
|
border-bottom: var(--border-style);
|
|
}
|
|
|
|
.table tbody tr {
|
|
border-bottom: var(--border-style);
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.cellNum {
|
|
width: 4rem;
|
|
text-align: right;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.empty {
|
|
color: var(--color-text-high);
|
|
font-style: italic;
|
|
}
|
|
|
|
.stageModeLabel {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.stageImage {
|
|
border-radius: var(--radius-field);
|
|
}
|