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: 优化提醒设置处理逻辑,支持临时生效配置导入
61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
.settings-panel {
|
|
background: rgba(255,255,255,0.95);
|
|
padding: 25px;
|
|
margin: 25px 0;
|
|
border-radius: 12px;
|
|
border: 1px solid #e0e6ed;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.settings-panel h3 {
|
|
margin: 0 0 20px;
|
|
color: #2c3e50;
|
|
font-size: 20px;
|
|
}
|
|
.settings-panel label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 12px 0;
|
|
font-size: 16px;
|
|
color: #57606f;
|
|
flex-wrap: wrap; /* 解决文本框显示在页面外的问题 */
|
|
}
|
|
.settings-panel input[type="checkbox"] {
|
|
width: 18px;
|
|
height: 18px;
|
|
accent-color: #3498db;
|
|
}
|
|
.settings-panel input[type="number"] {
|
|
width: 60px;
|
|
padding: 5px;
|
|
border: 1px solid #e0e6ed;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
color: #2d3436;
|
|
margin-right: 10px;
|
|
}
|
|
.settings-panel input[type="file"] {
|
|
margin-top: 10px;
|
|
}
|
|
.file-input-label {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background: #27ae60;
|
|
color: white;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: background 0.3s ease;
|
|
}
|
|
.file-input-label:hover {
|
|
background: #219150;
|
|
}
|
|
.file-input-label input[type="file"] {
|
|
display: none;
|
|
}
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|