blob: d2a3cd5cf498ea18250491c7852231770177e83e (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
.post-header {
margin-bottom: 20px;
.post-title {
margin: 0;
font-size: $post-title-font-size;
font-weight: $post-title-font-weight;
font-family: $global-font-family;
}
.post-link {
@include underline-from-center;
}
.post-meta {
font-size: 14px;
color: $post-meta-font-color;
.post-time {
font-size: 15px;
}
.post-category {
display: inline;
a {
color: inherit;
&::before {
content: '·';
}
&:hover {
color: $theme-color;
}
}
}
.more-meta {
&::before {
content: '·';
}
}
}
}
|