36 lines
545 B
CSS
36 lines
545 B
CSS
.blog {
|
|
max-width: 38rem;
|
|
padding: 1rem 4rem 6rem 4rem;
|
|
margin: 0 auto;
|
|
|
|
h2 {
|
|
color: var(--f-color);
|
|
font-family: var(--s-font);
|
|
font-weight: 600;
|
|
margin: 2.75rem 0 1rem .05rem;
|
|
}
|
|
|
|
p {
|
|
color: var(--fs-color);
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5rem;
|
|
padding: .5rem 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.post {
|
|
display: block;
|
|
|
|
a {
|
|
display: inline-block;
|
|
color: var(--l-color);
|
|
margin: .5rem 0;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |