31 lines
439 B
SCSS
31 lines
439 B
SCSS
.post {
|
|
padding: 3rem 0;
|
|
|
|
&-time {
|
|
color: $default-tint;
|
|
font-family: $sans-font;
|
|
font-weight: 500;
|
|
letter-spacing: .5px;
|
|
}
|
|
|
|
&-title {
|
|
color: $default-shade;
|
|
font-size: 2.7rem;
|
|
margin: 0 0 .8rem;
|
|
|
|
a {
|
|
color: $default-shade;
|
|
font-size: 2.7rem;
|
|
}
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5rem;
|
|
margin: 0 0 1rem;
|
|
text-align: justify;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|