webtools/site/mahjong/style.css

62 lines
836 B
CSS
Raw Normal View History

2025-12-20 23:56:49 +00:00
.container {
margin-block-end: 20px;
}
2025-12-20 11:10:19 +00:00
.hidden {
display: none;
}
.main-table {
table-layout: fixed;
}
.score-input-group {
display: grid;
gap: 15px;
grid-template-columns: 2fr 1fr;
align-items: baseline;
2025-12-20 11:32:30 +00:00
}
.btns {
display: flex;
gap: 10px;
justify-content: space-between;
align-items: center;
2025-12-20 23:56:49 +00:00
margin-block-end: 12px;
}
@media (max-width: 600px) {
.btns {
flex-direction: column;
gap: 20px;
}
.btns :nth-child(1) {
align-self: start;
}
.btns :nth-child(2) {
align-self: end;
}
}
.winner {
color: #9B2318;
font-weight: bold;
}
th {
background: #E2E2E2;
}
@media (prefers-color-scheme: dark) {
th {
background: #474747;
}
.winner {
color: #F06048;
font-weight: bold;
}
2025-12-20 11:10:19 +00:00
}