feat: improve student practice experience

This commit is contained in:
Codex
2026-06-29 15:12:35 +08:00
parent 134f7830dd
commit b96897b2be
12 changed files with 443 additions and 63 deletions

View File

@@ -286,6 +286,42 @@
font-weight: 750;
}
.answer-sheet {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 12px;
}
.answer-card {
min-width: 0;
height: 58px;
border: 1px solid #cbd5e1;
border-radius: 8px;
background: #fff;
color: #334155;
font-size: 22px;
font-weight: 800;
line-height: 58px;
}
.answer-card.current {
border-color: #2563eb;
background: #eff6ff;
color: #1d4ed8;
}
.answer-card.answered {
border-color: #bbf7d0;
background: #ecfdf5;
color: #047857;
}
.answer-card.wrong {
border-color: #fecaca;
background: #fff1f2;
color: #be123c;
}
.break-text {
word-break: break-all;
overflow-wrap: anywhere;