ildi-wp/dev/scss/generic/_typography.scss

60 lines
803 B
SCSS
Raw Permalink Normal View History

2018-04-24 20:41:34 -05:00
body {
font-family: $helvetica;
font-size: 1em;
font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.2;
font-weight: 700;
}
2018-07-24 08:20:35 -05:00
h1 { font-size: 2rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.375rem; }
2018-04-24 20:41:34 -05:00
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 {
font-size: 1em;
font-weight: 400;
}
p {
line-height: 1.6;
}
article,
section {
2018-07-24 08:20:35 -05:00
// font-size: 1.125em;
2018-04-24 20:41:34 -05:00
li { line-height: 1.6; }
}
.copy-small {
font-size: 0.875em;
}
.copy-italic {
letter-spacing: 0.03em;
font-style: italic;
}
.strong {
font-weight: 700;
}
2018-07-24 08:20:35 -05:00
// @media screen and (min-width: $screen-tablet-lg) {
// h1 { font-size: 3.4375rem; }
// h2 { font-size: 3rem; }
// h3 { font-size: 2.5rem; }
// h4 { font-size: 1.5rem; }
// h5 { font-size: 1rem; }
// h6 { font-size: 1rem; }
// }