website/_sass/post_content/_wrapper.scss

48 lines
1.0 KiB
SCSS
Raw Normal View History

2018-10-20 07:30:02 +00:00
.wrapper {
main > & {
& > :first-child {
margin-top: 0;
padding-top: 0;
}
.post-content {
> h1:not(:first-of-type){
margin-top: $spacing-unit * 1.65;
}
h2:first-of-type {
margin-top: $spacing-unit * 1.5;
}
h2:not(:first-of-type) {
margin-top: $spacing-unit * 1.4;
}
h3:not(:first-of-type) {
margin-top: $spacing-unit * 1.15;
}
> p {
word-spacing: 1px;
}
p > img {
display: block;
margin: 0 auto;
}
ul.resources-link {
list-style: none;
margin-left: 1.9em;
@include media-query($on-palm) {
margin-left: 0;
> li {
margin-bottom: 0.75em;
}
}
}
}
}
}