cheatsheets/_sass/2017/markdown/headings.scss

45 lines
591 B
SCSS

/*
* MarkdownBody context
*/
.MarkdownBody h2 {
@include heading-style;
@include font-size(5);
font-weight: 300;
font-family: $body-font;
margin-top: 0;
}
.MarkdownBody h3 {
margin: 0;
padding: 0;
margin-bottom: 16px;
font-family: $heading-font;
@include font-size(2);
font-weight: 300;
color: $baseA;
}
.MarkdownBody {
a,
a:visited {
color: $baseB;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
em {
font-style: normal;
color: $gray-text;
}
iframe {
border: 0;
margin: 0;
width: 100%;
}
}