Files
black7/src/pages/EnterScores.module.css
T

41 lines
625 B
CSS
Raw Normal View History

.row {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.name {
flex: 1;
font-size: 1.1rem;
font-weight: 500;
}
.scoreInput {
width: 6rem;
padding: 0.85rem 0.5rem;
font-size: 1.1rem;
font-family: inherit;
text-align: center;
border: 1.5px solid var(--color-parchment-border);
border-radius: 0.75rem;
background: #fdfaf4;
}
.scoreInputError {
border-color: #c0392b;
background: #fff5f5;
}
.sumLine {
margin: 0.5rem 0 0;
text-align: center;
font-size: 0.95rem;
color: var(--color-parchment-border);
}
.sumValid {
color: #4a9e6a;
font-weight: 600;
}