govarch-website/_sass/_post-list.scss
2018-08-12 15:12:53 -07:00

56 lines
898 B
SCSS

.post-list {
margin: 1em 0;
list-style: none;
}
.post-list li {
margin-bottom: 1em;
}
.post-link {
color: $text-color;
display: flex;
flex-direction: column-reverse;
text-decoration: none;
padding: .25em 0;
@media (min-width: $on-tablet) {
display: flex;
flex-direction: row;
justify-content: space-between;
.post-date {
margin-left: auto;
}
}
}
.post-link__heading {
display: block;
margin-right: 4em;
@media (min-width: $on-tablet) {
padding: .25em 0;
}
}
.post-link__title + .post-link__excerpt {
opacity: .6;
}
.post-pagination {
margin-top: 4rem;
font-size: .75em;
display: flex;
flex-direction: row;
justify-content: space-between;
* > {
flex-grow: 1;
flex-basis: 0;
}
a {
text-decoration: none;
text-transform: uppercase;
&:hover,
&:focus {
text-decoration: underline;
}
}
}