mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 22:27:22 -04:00
92 lines
943 B
SCSS
92 lines
943 B
SCSS
//
|
|
// Utility classes for typography
|
|
//
|
|
|
|
// stylelint-disable primer/selector-no-utility
|
|
|
|
.fs-1 {
|
|
@include fs-1;
|
|
}
|
|
|
|
.fs-2 {
|
|
@include fs-2;
|
|
}
|
|
|
|
.fs-3 {
|
|
@include fs-3;
|
|
}
|
|
|
|
.fs-4 {
|
|
@include fs-4;
|
|
}
|
|
|
|
.fs-5 {
|
|
@include fs-5;
|
|
}
|
|
|
|
.fs-6 {
|
|
@include fs-6;
|
|
}
|
|
|
|
.fs-7 {
|
|
@include fs-7;
|
|
}
|
|
|
|
.fs-8 {
|
|
@include fs-8;
|
|
}
|
|
|
|
.fs-9 {
|
|
@include fs-9;
|
|
}
|
|
|
|
.fs-10 {
|
|
@include fs-10;
|
|
}
|
|
|
|
.fw-300 {
|
|
font-weight: 300 !important;
|
|
}
|
|
|
|
.fw-400 {
|
|
font-weight: 400 !important;
|
|
}
|
|
|
|
.fw-500 {
|
|
font-weight: 500 !important;
|
|
}
|
|
|
|
.fw-700 {
|
|
font-weight: 700 !important;
|
|
}
|
|
|
|
.lh-0 {
|
|
line-height: 0 !important;
|
|
}
|
|
|
|
.lh-default {
|
|
line-height: $body-line-height;
|
|
}
|
|
|
|
.lh-tight {
|
|
line-height: $body-heading-line-height;
|
|
}
|
|
|
|
.ls-5 {
|
|
letter-spacing: 0.05em !important;
|
|
}
|
|
|
|
.ls-10 {
|
|
letter-spacing: 0.1em !important;
|
|
}
|
|
|
|
.ls-0 {
|
|
letter-spacing: 0 !important;
|
|
}
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase !important;
|
|
}
|
|
|
|
// stylelint-enable primer/selector-no-utility
|