38 lines
560 B
SCSS
38 lines
560 B
SCSS
.post {
|
|
padding: 3rem 0;
|
|
|
|
&-info {
|
|
color: $default-tint;
|
|
font-family: $palatino;
|
|
letter-spacing: .5px;
|
|
text-align: center;
|
|
|
|
span {
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
&-title {
|
|
color: $default-shade;
|
|
font-family: $sans-font;
|
|
font-size: 4rem;
|
|
margin: 1rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
&-line {
|
|
border-top: .4rem solid $default-color;
|
|
display: block;
|
|
margin: 0 auto 3rem;
|
|
width: 4rem;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 1rem;
|
|
text-align: justify;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|