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/_comment.scss
7Wate 91bab4d153
refacotr(css): Refactor css for easy maintenance
1. Refactored CSS for robustness
2. Add dark-mode choose
3. Add sans and serif
2022-01-17 19:51:11 +08:00

44 lines
762 B
SCSS

// 评论组件
.comment {
width: 47rem;
margin: 1rem 0rem;
padding: 1rem 2.5rem;
background: #fafafa;
box-shadow: 0 0.375rem 1rem -0.5rem #bfbfbf;
@include darkmode {
background: #292929;
box-shadow: 0 0.375rem 1rem -0.5rem #262626;
}
}
.post-bottom-menu {
display: flex;
justify-content: space-around;
margin-top: 2rem;
padding-top: 2rem;
width: 40rem;
border-top: 1px solid #e7e7e7;
@include darkmode {
border-top: 1px solid #e7e7e7;
}
>a {
color: #262626;
&:hover {
color: #595959;
}
@include darkmode {
color: #b6b6b6;
&:hover {
color: #434343;
}
}
}
}