17 lines
511 B
SCSS
17 lines
511 B
SCSS
// Weight and italics
|
|
|
|
.font-weight-300 { font-weight: 300 !important; }
|
|
.font-weight-400 { font-weight: 400 !important; }
|
|
.font-weight-500 { font-weight: 500 !important; }
|
|
.font-weight-600 { font-weight: 600 !important; }
|
|
.font-weight-700 { font-weight: 700 !important; }
|
|
.font-weight-800 { font-weight: 800 !important; }
|
|
.font-weight-900 { font-weight: 900 !important; }
|
|
|
|
|
|
// Line heights
|
|
|
|
.lh-100 { line-height: 1; }
|
|
.lh-125 { line-height: 1.25; }
|
|
.lh-150 { line-height: 1.5; }
|
|
.lh-180 { line-height: 1.8; } |