blob: 4109d956e0c87aeebe295b7c14775fe1a09e1012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// ==============================
// 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';
}
|