Skip to content

Instantly share code, notes, and snippets.

@ilko725
Created January 30, 2018 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilko725/69a7123e4b210454251852d2b1699ce3 to your computer and use it in GitHub Desktop.
Save ilko725/69a7123e4b210454251852d2b1699ce3 to your computer and use it in GitHub Desktop.
/*
* Text styling
*/
// Text styles
.text-italic {
font-style: italic;
}
.text-normal {
font-style: normal;
}
// Text decoration
.text-underline {
text-decoration: underline;
}
.text-strike {
text-decoration: line-through;
}
// Text weight
.font-weight-thin {
font-weight: 100;
}
.font-weight-light {
font-weight: 300;
}
.font-weight-regular {
font-weight: 400;
}
.font-weight-medium {
font-weight: 500;
}
.font-weight-sbold {
font-weight: 600;
}
.font-weight-ubold {
font-weight: 900;
}
// Text spacing
.text-spacing-0 {
letter-spacing: 0;
}
.text-primary {
color: $primary !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment