website/_sass/pages/notes.scss

20 lines
415 B
SCSS
Raw Normal View History

2018-10-20 07:30:02 +00:00
.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;
}
}