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

87 lines
1.5 KiB
SCSS
Raw Normal View History

/*
*
* 友链
*
* 按照顺序
* 1.默认
* 2.深色
* 3.媒体查询
*
*/
@import "../base/variables";
.links {
>ul {
>.friend {
font-size: 1.5rem;
font-weight: bold;
line-height: 2.2rem;
color: #262626;
}
>li {
display: flex;
justify-content: space-between;
font-size: 1rem;
line-height: 1.5rem;
>a {
color: #595959;
&:hover {
color: #59595980;
}
2022-01-19 17:34:41 +08:00
}
}
}
// =========== 深色 ===========
@include darkmode {
>ul {
>.friend {
color: #dbdbdb;
}
2022-01-19 17:34:41 +08:00
>li {
>a {
color: #dbdbdb;
&:hover {
color: #dbdbdb80;
}
}
}
2022-01-19 17:34:41 +08:00
}
}
// =========== 移动端 ===========
@media (max-width: 870px) {
2022-01-19 18:53:46 +08:00
>ul {
padding: 2.5% 1%;
>.friend {
padding: 2.5% 0;
}
>li {
padding-bottom: 1%;
}
}
}
2022-01-19 21:24:32 +08:00
// =========== 桌面端 ===========
@media (min-width: 870px) {
2022-01-19 21:24:32 +08:00
>ul {
padding: 0.625rem 0.1rem;
>.friend {
padding: 0.5rem 0;
}
>li {
padding-bottom: 0.3rem;
}
}
}
}