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