33 lines
379 B
SCSS
33 lines
379 B
SCSS
/*
|
|
* Headings
|
|
* Styles for headings 1 through 6
|
|
*
|
|
* Dependencies:
|
|
* styles/settings/typography.scss
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/05/5
|
|
*/
|
|
h1,h2,h3,h4,h5,h6 {
|
|
font-family: $s-font--stack-headings;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5em;
|
|
}
|
|
h2 {
|
|
font-size: 2em;
|
|
}
|
|
h3 {
|
|
font-size: 1.5em;
|
|
}
|
|
h4 {
|
|
font-size: 1.25em;
|
|
}
|
|
h5 {
|
|
font-size: 1em;
|
|
}
|
|
h6 {
|
|
font-size: 0.75em;
|
|
}
|