UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
utilities.scss 759 B
Newer Older
Graham Smith's avatar
Graham Smith committed
.background-transparent {
  background-color: transparent !important;
Graham Smith's avatar
Graham Smith committed
}
.h-100 {
  height: 100%;
.w-100 {
  width: 100%;
.justify-content-center {
Graham Smith's avatar
Graham Smith committed
  justify-content: center;
}
.justify-content-space-around {
  justify-content: space-around;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-self-center {
  align-self: center;
}
Graham Smith's avatar
Graham Smith committed
.white-space-normal {
  white-space: normal;
}
.white-space-nowrap {
Graham Smith's avatar
Graham Smith committed
  white-space: nowrap;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;

.subhead {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-transform: none;
}