Files
xianyan/docs/ctc/styles.css
Developer 7a6d555e4c chore: 清理临时文件与工作流文档,完善句子来源功能
1. 删除本地临时调试文件、工作流模板、闲置脚本与脑暴记录
2. 新增极简在线记事本API部署文件
3. 修复Flutter端拾光Sheet布局与状态更新问题
4. 完善句子来源后端API与前端导入逻辑
5. 修复macOS平台secure存储插件引用
2026-06-11 04:39:16 +08:00

54 lines
935 B
CSS
Executable File

/*! Minimalist Web Notepad | https://github.com/pereorga/minimalist-web-notepad */
body {
margin: 0;
background: #ebeef1;
}
.container {
position: absolute;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
}
#content {
font-size: 100%;
margin: 0;
padding: 20px;
overflow-y: auto;
resize: none;
width: 100%;
height: 100%;
min-height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px #ddd solid;
outline: none;
}
#printable {
display: none;
}
@media (prefers-color-scheme: dark) {
body {
background: #383934;
}
#content {
background: #282923;
color: #f8f8f2;
border: 0;
}
}
@media print {
.container {
display: none;
}
#printable {
display: block;
white-space: pre-wrap;
word-break: break-word;
}
}