tale/_sass/_post.scss

36 lines
508 B
SCSS
Raw Normal View History

2017-03-12 10:44:45 +00:00
.post {
padding: 3rem 0;
2017-03-15 04:27:59 +00:00
&:not(:last-child) {
border-bottom: .5px solid $grey-2;
}
2017-03-12 10:44:45 +00:00
&-time {
color: $default-tint;
font-family: $sans-font;
font-weight: 500;
letter-spacing: .5px;
2017-03-12 10:44:45 +00:00
}
&-title {
color: $default-shade;
font-size: 2.7rem;
2017-03-12 10:44:45 +00:00
margin: 0 0 .8rem;
a {
color: $default-shade;
font-size: 2.7rem;
2017-03-15 04:27:59 +00:00
line-height: normal;
2017-03-12 10:44:45 +00:00
}
}
p {
margin: 0 0 1rem;
text-align: justify;
}
a:hover {
text-decoration: underline;
}
2017-03-12 10:44:45 +00:00
}