drewcassidy.me/css/blog.scss
drewcassidy 670a2fa8be Add blog post list and placeholder blog post
• add blog post list
• add css specificially for the blog and projects pages
• make layouts more modular for including different CSS on each page
• use HTML for directory pages for better use with Liquid
2023-04-19 01:16:52 -07:00

52 lines
896 B
SCSS

---
---
@import 'util';
@import 'colors';
@import 'fonts';
#post-list {
list-style-type: none;
padding: {
left: 0px;
}
.post-entry {
.post-title {
color: $body-text;
text-decoration: none;
font-size: $body-size + 8;
font-weight: bold;
}
.post-title:hover {
text-decoration: underline;
}
.post-date {
text-align: right;
font-size: $body-size - 4;
}
.post-tags {
text-align: left;
font-size: $body-size - 4;
}
.post-see-more {
font-style: italic;
color: $body-text-subtle;
}
.post-see-more:hover {
color: $body-text;
}
table {
width: 100%;
}
hr {
margin: 5px;
}
}
}