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

44 lines
794 B
SCSS
Raw Normal View History

// 页脚
@import "../../base/variables";
footer {
.copyright {
2022-01-19 17:34:41 +08:00
display: flex;
flex-direction: column;
align-items: center;
font-size: 0.8rem;
a {
2022-02-09 17:45:14 +08:00
padding: 0.1rem 0.1rem;
color: #bfbfbf;
2022-01-19 17:34:41 +08:00
&:hover {
color: #262626;
}
2022-01-19 17:34:41 +08:00
}
}
// =========== 深色 ===========
2022-01-19 17:34:41 +08:00
@include darkmode {
2022-02-09 17:45:14 +08:00
.copyright{
2022-01-19 17:34:41 +08:00
>a {
color: #262626;
&:hover {
color: #bfbfbf;
}
}
}
}
2022-01-19 17:34:41 +08:00
// =========== 移动端 ===========
@media (max-width: 870px) {
2022-01-19 18:53:46 +08:00
padding: 5% 0;
}
2022-01-19 21:24:32 +08:00
// =========== 桌面端 ===========
@media (min-width: 870px){
2022-01-19 21:24:32 +08:00
padding: 2rem 0;
}
}