40 lines
518 B
SCSS
40 lines
518 B
SCSS
/*
|
|
* ************** *
|
|
* POST *
|
|
* ************** *
|
|
*/
|
|
|
|
.post-header {
|
|
margin: 1em 0 1em 0;
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.post-info {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 0;
|
|
margin-top: 0;
|
|
> li {
|
|
padding-right: .5rem;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
display: flex;
|
|
> ul {
|
|
display: flex;
|
|
padding: 0;
|
|
white-space: pre;
|
|
}
|
|
> ul:before {
|
|
content: " ";
|
|
white-space: pre;
|
|
}
|
|
}
|
|
}
|
|
|
|
.post-taxonomies + .post-taxonomies:before {
|
|
content: ", ";
|
|
}
|