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

103 lines
2.0 KiB
SCSS
Raw Normal View History

/*
*
* 文章
*
* 按照顺序
* 1.默认
* 2.深色
* 3.媒体查询
* - 870px
* - 2048px
*/
@import "../base/variables";
.post {
>.title {
>h1 {
>a {
letter-spacing: 0.0625rem;
font-size: 2rem;
line-height: 2rem;
color: #262626;
&:hover {
color: #26262680;
}
}
}
>.info {
2022-01-19 17:34:41 +08:00
display: flex;
border-bottom: 1px solid #d9d9d9;
2022-01-21 11:25:35 +08:00
margin-bottom: 1rem;
>span {
font-weight: 400;
font-size: 0.75rem;
color: #8c8c8c;
2022-01-19 17:34:41 +08:00
i {
position: relative;
top: 0.125rem;
color: #8c8c8c;
2022-01-19 17:34:41 +08:00
}
}
}
}
// =========== 深色 ===========
@include darkmode {
>.title {
>h1 {
>a {
color: #dbdbdb;
:hover {
color: #dbdbdb80;
}
}
}
>.info {
border-bottom: 1px solid #434343;
span {
color: #7d7d7d;
i {
color: #7d7d7d;
}
}
}
}
}
2022-01-19 17:34:41 +08:00
// =========== 移动端 ===========
@media (min-width: 320px) and (max-width: 870px) {
2022-01-19 18:53:46 +08:00
>.title {
margin-top: 10%;
>.info{
flex-direction: column;
2022-01-19 18:53:46 +08:00
>span{
padding: 1% 1%;
2022-01-19 18:53:46 +08:00
}
}
}
2022-01-19 17:34:41 +08:00
}
2022-01-19 21:24:32 +08:00
// =========== 桌面端 ===========
@media (min-width: 870px) and (max-width: 2048px) {
2022-01-19 21:24:32 +08:00
>.title {
margin-top: 4rem;
>.info{
flex-direction: row;
2022-01-19 21:24:32 +08:00
>span{
margin: 0.25rem 0.25rem;
2022-01-19 21:24:32 +08:00
}
}
}
}
}