43 lines
556 B
SCSS
43 lines
556 B
SCSS
@import "./variables.scss";
|
|
|
|
.postDate {
|
|
float: right;
|
|
color: $white;
|
|
}
|
|
|
|
.postTitle {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
text-transform: capitalize;
|
|
font-family: $fontHeader;
|
|
font-size: 1.2em;
|
|
float: left;
|
|
}
|
|
|
|
.postHeader {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.postsList {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.postListItem {
|
|
padding: 20px;
|
|
background-color: $black;
|
|
margin-bottom: 20px;
|
|
|
|
p {
|
|
text-decoration: none;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.postExcerpt {
|
|
text-align: initial;
|
|
}
|
|
|
|
.headerContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
} |