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
794 B
CSS
41 lines
794 B
CSS
.fullscreen-mode {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #ffffff;
|
|
z-index: 9999;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
.fullscreen-mode .status-box {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: none;
|
|
}
|
|
.fullscreen-mode .time-display {
|
|
font-size: 25vw;
|
|
line-height: 0.9;
|
|
color: #2c3e50;
|
|
}
|
|
.fullscreen-mode .status-label {
|
|
font-size: 6vw;
|
|
margin-top: 4vw;
|
|
color: #57606f;
|
|
}
|
|
.fullscreen-mode .control-bar,
|
|
.fullscreen-mode .settings-panel,
|
|
.fullscreen-mode .schedule-table {
|
|
display: none !important;
|
|
}
|