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

129 lines
2.3 KiB
SCSS
Raw Normal View History

/*
*
* 首页
*
* 按照顺序
* 1.默认
* 2.深色
* 3.媒体查询
* - 870px
* - 2048px
*/
@import "../base/variables";
.index {
// 标题
>h1 {
>a {
letter-spacing: 0.0625rem;
font-size: 1.375rem;
line-height: 1.75rem;
color: #262626;
&:hover {
color: #26262680;
}
}
}
// 摘要
>p {
line-height: 1.5rem;
text-indent: 2rem;
color: #595959;
}
// 徽标
>.info {
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
flex-direction: row;
border-bottom: 1px solid #d9d9d9;
>.date,
>.tag {
font-weight: 400;
font-size: 0.75rem;
>i {
position: relative;
top: 0.1rem;
color: #8c8c8c;
}
>a {
font-size: 0.75rem;
color: #8c8c8c;
&:hover {
color: #8c8c8c80;
}
2022-01-19 17:34:41 +08:00
}
}
}
// =========== 深色 ===========
@include darkmode {
>h1 {
>a {
color: #dbdbdb;
&:hover {
color: #dbdbdb80;
}
}
}
>p {
color: #acacac;
}
>.info {
border-bottom: 1px solid #434343;
>.date,
>.tag {
>i {
color: #7d7d7d;
}
2022-01-19 17:34:41 +08:00
>a {
color: #7d7d7d;
&:hover {
color: #7d7d7d80;
}
}
}
2022-01-19 17:34:41 +08:00
}
2022-01-19 17:34:41 +08:00
}
// =========== 移动端 ===========
@media (min-width: 320px) and (max-width: 870px) {
2022-01-19 21:24:32 +08:00
>h1 {
2022-01-19 17:34:41 +08:00
margin-block-start: 0;
}
2022-01-19 21:24:32 +08:00
2022-01-19 17:34:41 +08:00
>.info {
padding: 1% 0 2% 0;
>span {
margin: 1% 1%;
}
}
}
2022-01-19 18:53:46 +08:00
// =========== 桌面端 ===========
@media (min-width: 870px) and (max-width: 2048px) {
2022-01-19 21:24:32 +08:00
>.info {
padding: 0.5rem 0 2rem 0;
2022-01-21 11:25:35 +08:00
>span{
padding: 0 0.5rem;
}
2022-01-19 21:24:32 +08:00
}
}
}