mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 10:58:33 +00:00
20 lines
421 B
SCSS
20 lines
421 B
SCSS
.entry-list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: .25em;
|
|
padding: .5em;
|
|
&:nth-child(odd) {
|
|
background: lighten($brand-color, 50%);
|
|
}
|
|
&:last-child {
|
|
margin-bottom: 1em;
|
|
}
|
|
.post-list-date {
|
|
display: block;
|
|
}
|
|
@include media-query($on-palm) {
|
|
flex-flow: column;
|
|
align-items: baseline;
|
|
}
|
|
} |