style(assets): 更新CSS文件以改进样式和字体

将`main.css`文件引入`base.css`,并调整`base.css`中的字体权重和字体设置。移除背景颜色注释以简化样式表,并更新字体为`Microsoft YaHei`以提高中文显示效果。
This commit is contained in:
Yakumo Hokori 2025-05-03 19:07:30 +08:00
parent b4a13db89b
commit 20c1bf8c40
2 changed files with 5 additions and 3 deletions

View File

@ -55,13 +55,13 @@
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
font-weight: bold;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
/* background: var(--color-background); */
transition:
color 0.5s,
background-color 0.5s;
@ -70,7 +70,7 @@ body {
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
'Microsoft YaHei',
Roboto,
Oxygen,
Ubuntu,

View File

@ -1,4 +1,6 @@
@import url('./base.css');
body {
margin: 0;
}