mirror of
https://github.com/RhenCloud/Cloud-Index.git
synced 2025-12-06 07:06:41 +08:00
- 移除 main.js 并替换为8个 JS 模块 - 移除 main.css 并替换为7个 CSS 模块 - 更新 base.html 以加载模块化文件 - 通过 index.css 保持完全向后兼容 - 改进代码组织、可维护性和可复用性
23 lines
437 B
CSS
23 lines
437 B
CSS
/**
|
|
* Cloud-Index 主样式表
|
|
* 这个文件导入所有模块化的 CSS 文件
|
|
*/
|
|
|
|
/* 1. 变量和基础样式 */
|
|
@import url("variables.css");
|
|
|
|
/* 2. 按钮样式 */
|
|
@import url("buttons.css");
|
|
|
|
/* 3. 表格视图 */
|
|
@import url("table.css");
|
|
|
|
/* 4. 网格视图 */
|
|
@import url("grid.css");
|
|
|
|
/* 5. 模态框和对话框 */
|
|
@import url("modals.css");
|
|
|
|
/* 6. 实用工具样式 */
|
|
@import url("utilities.css");
|