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