@lxlib/theme
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
29 lines (23 loc) • 984 B
text/less
// Alignment
.text-left { text-align: left ; }
.text-center { text-align: center ; }
.text-right { text-align: right ; }
// Transformation
.text-lowercase { text-transform: lowercase ; }
.text-uppercase { text-transform: uppercase ; }
.text-capitalize { text-transform: capitalize ; }
.text-deleted { text-decoration: line-through; }
// wrapping
.text-nowrap { white-space: nowrap ; }
.text-wrap { white-space: pre-wrap ; }
.text-truncate { .text-truncate(); }
// Weight and italics
.font-weight-normal { font-weight: normal; }
.font-weight-bold { font-weight: 700; }
.font-italic { font-style: italic; }
// Sizing
.text-xs { font-size: @text-xs ; }
.text-sm { font-size: @text-sm ; }
.text-md { font-size: @text-md ; }
.text-lg { font-size: @text-lg ; }
.text-xl { font-size: @text-xl ; }