mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 10:59:45 +00:00
24 lines
434 B
SCSS
24 lines
434 B
SCSS
// ==============================
|
|
// Post
|
|
// ==============================
|
|
|
|
.posts {
|
|
margin-bottom: $post-list-margin-bottom;
|
|
border-bottom: $post-border;
|
|
}
|
|
|
|
.post {
|
|
padding: $post-padding;
|
|
|
|
& + .post {
|
|
border-top: $post-border;
|
|
}
|
|
|
|
@import '_post/header';
|
|
@import '_post/toc';
|
|
@import '_post/content';
|
|
@import '_post/copyright';
|
|
@import '_post/reward';
|
|
@import '_post/footer';
|
|
@import '_post/outdated';
|
|
}
|