背景颜色调整一下

This commit is contained in:
张成
2025-09-16 21:54:23 +08:00
parent 13bdc1a1f3
commit 5c6823e0b2

View File

@@ -3,7 +3,17 @@
// 个人页面样式
.myself_page {
min-height: 100vh;
background: radial-gradient(circle at 50% 0%, rgba(238, 255, 220, 1) 0%, rgba(255, 255, 255, 1) 37%);
background: radial-gradient(circle at 50% 0,
/* 光晕圆心在顶部中间 */
rgba(173, 216, 230, 0.9) 0px,
/* 中间更深的浅蓝 */
rgba(173, 216, 230, 0.5) 200px,
/* 100px 处开始淡化 */
rgba(255, 255, 255, 1) 300px,
/* 到 200px 变成白色 */
#ffffff 100%
/* 200px 以下全白 */
);
position: relative;
overflow: hidden;
box-sizing: border-box;
@@ -17,7 +27,7 @@
margin-top: 0;
box-sizing: border-box;
overflow-y: auto;
padding: 0px 15px 15px 15px ;
padding: 0px 15px 15px 15px;
// 用户信息区域
.user_info_section {
@@ -356,4 +366,3 @@
}
}
}