This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
redemption/source/css/pages/layout/_footer.scss

30 lines
481 B
SCSS
Raw Normal View History

// 页脚
@import "../../base/variables";
footer {
padding: 2rem 0;
.copyright {
font-size: 0.8rem;
a {
margin: 0 0.125rem;
// 浅色
color: #bfbfbf;
&:hover {
color: #262626;
}
// 深色
@include darkmode{
color: #262626;
&:hover {
color: #bfbfbf;
}
}
}
}
}