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

43 lines
720 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 {
color: #bfbfbf;
2022-01-19 17:34:41 +08:00
&:hover {
color: #262626;
}
2022-01-19 17:34:41 +08:00
}
}
// 深色
@include darkmode {
.copyright> {
>a {
color: #262626;
&:hover {
color: #bfbfbf;
}
}
}
}
2022-01-19 17:34:41 +08:00
// 320px 设备
@media (max-width: 320px) {
padding: 5% 0;
}
2022-01-19 18:53:46 +08:00
// 768px 设备
@media (min-width: 320px) and (max-width: 768px) {
padding: 5% 0;
}
}