feat: 更新个人引导页内容和样式

- 更新 README.md 中的图片链接
- 移除配置修改相关内容
- 添加性价比最高的 ChatGPT 镜像站链接
- 更新 index.html 中的标题、描述和导航链接
- 调整 footer 样式,优化版权信息显示
- 添加自定义滚动条样式
- 调整部分 CSS 样式,如输入框样式和 padding 等
This commit is contained in:
NianBroken
2025-05-22 00:09:00 +08:00
parent 429ac65761
commit 00a56dbe27
6 changed files with 46 additions and 681 deletions

View File

@@ -31,6 +31,27 @@ body {
line-height: 1;
}
/* 自定义滚动条样式 */
::-webkit-scrollbar {
/* 选择整体滚动条 */
width: 0px; /* 设置滚动条的宽度 */
}
::-webkit-scrollbar-track {
/* 选择滚动条背景 */
background: #f1f1f1; /* 设置滚动条背景颜色 */
}
::-webkit-scrollbar-thumb {
/* 选择滚动条手柄 */
background: #888; /* 设置滚动条手柄的颜色 */
}
::-webkit-scrollbar-thumb:hover {
/* 鼠标悬停时选择滚动条手柄 */
background: #555; /* 设置鼠标悬停时滚动条手柄的颜色 */
}
ol, ul {
list-style: none;
}
@@ -176,7 +197,7 @@ input, select, textarea {
color: #ffffff;
font-weight: 600;
line-height: 1.5;
margin: 0 0 1rem 0;
margin: 0 0 0.5rem 0;
text-transform: uppercase;
letter-spacing: 0.2rem;
}
@@ -1317,7 +1338,7 @@ input, select, textarea {
-webkit-transition-delay: 0.25s;
-ms-transition-delay: 0.25s;
transition-delay: 0.25s;
padding: 3rem 2rem;
padding: 1.5rem 2rem;
max-height: 40rem;
overflow: hidden;
}