forked from wangziqi/gongxue-base
feat: improve student practice experience
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user