mirror of
https://git.adityakumar.xyz/hugo-theme-even.git
synced 2024-11-13 00:29:43 +00:00
46 lines
662 B
SCSS
46 lines
662 B
SCSS
.post-header {
|
|
margin-bottom: 20px;
|
|
|
|
.post-title {
|
|
margin: 0;
|
|
font-size: $post-title-font-size;
|
|
font-weight: $post-title-font-weight;
|
|
font-family: $global-serif-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: '·';
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|