1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2025-03-04 08:59:18 +00:00
danbarber.me.hugo/assets/sass/components/_post.scss
2019-10-16 21:54:26 -04:00

29 lines
419 B
SCSS

.post {
border-bottom: 1px dashed $border-color;
margin-top: 2em;
padding-bottom: 1.5em;
img {
max-width: 100%;
}
& > * {
@include container
}
@media (prefers-color-scheme: dark) {
border-bottom: 1px dashed $border-color-dark;
}
}
.post__title {
margin-bottom: 0.25em;
}
.post__date {
color: $text-color-light;
font-size: 0.9rem;
margin-top: 0;
text-transform: uppercase;
}