public/styles/base/_typography.scss (31 lines of code) (raw):
/**
* Basic typography style for copy text
*/
body {
color: $textColor;
font: normal 14px / 1.4 $text-font-stack;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .preview__title, .preview__score {
font-family: $title-font-stack;
font-weight: normal;
font-style: normal;
margin: 0;
}
h1, .h1 {
font-size: 26px;
}
h2, .h2 {
font-size: 24px;
}
h3, .h3 {
font-size: 20px;
}
h4, .h4 {
font-size: 18px;
}
p {
margin: 0;
}
.link {
color: $textColor;
&:hover {
text-decoration: none;
}
}