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/_pagenav.scss

42 lines
797 B
SCSS
Raw Normal View History

// 分页
.pagenav {
display: flex;
justify-content: space-between;
>a {
text-decoration: none;
margin: 0 2rem;
color: #262626;
&:hover {
color: #595959;
}
2022-01-19 17:34:41 +08:00
}
2022-01-19 17:34:41 +08:00
// =========== 深色 ===========
@include darkmode {
>a {
color: #b6b6b6;
&:hover {
color: #434343;
}
}
}
2022-01-19 17:34:41 +08:00
// =========== 320px 设备 ===========
@media (max-width: 320px) {
padding: 5% 0 7% 0;
}
2022-01-19 18:53:46 +08:00
// =========== 768px 设备 ===========
@media (min-width: 320px) and (max-width: 768px) {
padding: 4% 0 5% 0;
}
2022-01-19 21:24:32 +08:00
// =========== 2048px 设备 ===========
@media (min-width: 768px) and (max-width: 2048px) {
padding: 2rem 0;
}
}