Gem2a / app /static /css /footer.css
misonL's picture
Modularize frontend CSS and JavaScript assets
19bd286
Raw
History Blame Contribute Delete
815 Bytes
/* app/static/css/footer.css - 页脚样式 */
footer {
text-align: center; /* 使页脚内容居中 */
margin-top: 40px; /* 增加与上方内容的间距 */
padding: 20px; /* 增加内边距 */
background-color: var(--background-medium); /* 页脚背景色 */
border-top: 1px solid var(--border-color); /* 顶部边框 */
color: var(--text-dark); /* 文本颜色 */
font-size: 0.9rem; /* 字体大小 */
}
footer p {
margin: 5px 0; /* 调整段落间距 */
}
footer a {
color: var(--primary-color); /* 链接颜色 */
text-decoration: none; /* 移除下划线 */
}
footer a:hover {
text-decoration: underline; /* 鼠标悬停时显示下划线 */
}
footer img {
vertical-align: middle; /* 图片垂直居中 */
margin-left: 5px; /* 图片左侧间距 */
}