chore: same styles for site + feeds; clean up unused param; send reviews not description in dedicated movies/books feeds
This commit is contained in:
parent
06bdb5be66
commit
ab14e9f2fe
16 changed files with 70 additions and 371 deletions
47
src/assets/styles/pages/feeds.css
Normal file
47
src/assets/styles/pages/feeds.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
.feed {
|
||||
& .item {
|
||||
&:not(:last-of-type) {
|
||||
border-bottom: var(--border-gray);
|
||||
margin-bottom: var(--spacing-base);
|
||||
padding-bottom: var(--spacing-base);
|
||||
}
|
||||
|
||||
& .date {
|
||||
display: block;
|
||||
color: var(--gray-dark);
|
||||
font-size: var(--font-size-sm);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
& h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
& img {
|
||||
border: var(--border-default);
|
||||
border-radius: var(--border-radius-slight);
|
||||
height: auto;
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin-top: var(--sizing-base);
|
||||
}
|
||||
}
|
||||
|
||||
& p {
|
||||
&:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
& ol > li p {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
& footer {
|
||||
padding-bottom: var(--spacing-3xl);
|
||||
}
|
||||
}
|
|
@ -13,7 +13,6 @@ youtube-video + .associated-media {
|
|||
.footnotes {
|
||||
& .footnotes-list {
|
||||
margin-bottom: 0;
|
||||
padding-left: 0;
|
||||
|
||||
& li:last-child {
|
||||
margin-bottom: 0;
|
||||
|
|
Reference in a new issue