Files
datahub/frontend/src/assets/base.css
T

28 lines
503 B
CSS
Raw Normal View History

2025-11-10 13:59:55 +08:00
/* 项目主题色 CSS 变量 */
2025-11-05 16:34:40 +08:00
:root {
2025-11-10 13:59:55 +08:00
--primary-color: #4da30d;
--primary-color-light: #5fc910;
--primary-color-dark: #377508;
--accent-color: #e7000b;
2025-11-05 16:34:40 +08:00
}
2025-11-10 13:59:55 +08:00
/* 基础样式 */
2025-11-05 16:34:40 +08:00
body {
min-height: 100vh;
2025-11-10 13:59:55 +08:00
margin: 0;
2025-11-05 16:34:40 +08:00
font-family:
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}