mirror of
https://github.com/handsomezhuzhu/handsomezhuzhu.github.io.git
synced 2026-02-20 20:00:14 +00:00
25 lines
527 B
SCSS
25 lines
527 B
SCSS
.VPHome {
|
|
// 定义遮罩样式
|
|
background: radial-gradient(ellipse,
|
|
rgba(var(--bg-gradient-home), 0.53) 0%,
|
|
rgba(var(--bg-gradient-home), 0) 2000%);
|
|
|
|
// 自定义首页背景图
|
|
&::before {
|
|
background-size: cover;
|
|
// 默认是暗色模式的背景
|
|
background-image: url(/bg.webp);
|
|
}
|
|
}
|
|
|
|
// 亮色模式下切换背景
|
|
html:not(.dark) .VPHome::before {
|
|
background-image: url(/bgw.webp);
|
|
}
|
|
|
|
|
|
|
|
.blog-item .pin.pin::before {
|
|
// 修改颜色
|
|
background-image: linear-gradient(#1E90FF, #1E90FF);
|
|
} |