mirror of
https://github.com/ExamAware/ExamSchedule.git
synced 2025-04-29 19:16:33 +00:00

* docs: 更新README,添加考试看板和时间广播功能说明,优化界面截图 * docs: 在README中添加广播模式说明及相关截图 * refactor&fix&feat: 已知问题修复,加上暗色模式,还有拆分css * feat: 更新课程安排和提醒设置功能,支持导入导出配置 * feat: 添加考试信息展示,更新课程表加载逻辑,优化样式 * feat: 更新考试提醒设置,优化音频选择和配置加载逻辑 * feat: 优化提醒设置处理逻辑,支持临时生效配置导入
41 lines
785 B
CSS
41 lines
785 B
CSS
.schedule-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 25px 0;
|
|
background: white;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
}
|
|
.schedule-table th {
|
|
background: #f8f9fa;
|
|
padding: 16px;
|
|
color: #57606f;
|
|
font-weight: 600;
|
|
border-bottom: 2px solid #e0e6ed;
|
|
}
|
|
.schedule-table td {
|
|
padding: 14px;
|
|
border-bottom: 1px solid #f1f3f6;
|
|
}
|
|
.current-class {
|
|
background: #e8f5e9 !important;
|
|
position: relative;
|
|
}
|
|
.current-class:after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 4px;
|
|
background: #2ecc71;
|
|
}
|
|
.future-class {
|
|
background: #f8f9fa !important;
|
|
}
|
|
.past-class {
|
|
background: #fafafa !important;
|
|
color: #a4b0be;
|
|
}
|