45 lines
627 B
SCSS
45 lines
627 B
SCSS
//Typography
|
|
p {
|
|
font-size: 16px;
|
|
line-height: 1.625;
|
|
font-weight: 400;
|
|
}
|
|
|
|
//Headings
|
|
//add helper fw-bold to any element to get bold style (500)
|
|
h1,.h1 {
|
|
line-height: 1.325;
|
|
font-weight: 300;
|
|
}
|
|
h2,.h2 {
|
|
line-height: 1.325;
|
|
font-weight: 300;
|
|
}
|
|
h3,.h3 {
|
|
line-height: 1.375;
|
|
font-weight: 300;
|
|
}
|
|
h4,.h4 {
|
|
line-height: 1.6;
|
|
font-weight: 300;
|
|
}
|
|
h5,.h5 {
|
|
line-height: 1.325;
|
|
font-weight: 400;
|
|
}
|
|
h6,.h6 {
|
|
line-height: 1.7;
|
|
letter-spacing: .75px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
label {
|
|
line-height: 1.625;
|
|
font-weight: 400;
|
|
}
|
|
|
|
caption {
|
|
font-size: .75rem;
|
|
line-height: 1.7;
|
|
font-weight: 400;
|
|
}
|