// Copyright (C) 2018 The Trustees of Indiana University
// SPDX-License-Identifier: BSD-3-Clause

@use '../core' as *;

.#{$prefix}-text-uppercase {
  text-transform: uppercase;

  /**
   * All uppercase text is harder for humans to read. A little extra
   * letter spacing helps make it easier.
   */
  letter-spacing: .04rem;
}

.#{$prefix}-text-bold {
  font-weight: $font-weight-bold !important;
}

.#{$prefix}-text-medium {
  font-weight: $font-weight-medium !important;
}

.#{$prefix}-text-regular {
  font-weight: $font-weight-regular !important;
}

.#{$prefix}-text-left {
  text-align: left !important;
}

.#{$prefix}-text-right {
  text-align: right !important;
}

.#{$prefix}-text-center {
  text-align: center !important;
}

.#{$prefix}-lh-base {
  line-height: $line-height-base;
}

.#{$prefix}-lh-tight {
  line-height: $line-height-tight;
}

.#{$prefix}-lh-loose {
  line-height: $line-height-loose;
}

.#{$prefix}-text-nobr {
  white-space: nowrap;
}

.#{$prefix}-font-sans {
  font-family: $font-sans;
}

.#{$prefix}-font-serif {
  font-family: $font-serif;
}

.#{$prefix}-font-mono {
  font-family: $font-mono;
}