290 lines
4.3 KiB
SCSS
290 lines
4.3 KiB
SCSS
// Grayscale Text Utilities
|
|
|
|
.text-xs {
|
|
font-size: .7rem;
|
|
}
|
|
|
|
.text-lg {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.text-gray-100 {
|
|
color: $gray-100 !important;
|
|
}
|
|
|
|
.text-gray-200 {
|
|
color: $gray-200 !important;
|
|
}
|
|
|
|
.text-gray-300 {
|
|
color: $gray-300 !important;
|
|
}
|
|
|
|
.text-gray-400 {
|
|
color: $gray-400 !important;
|
|
}
|
|
|
|
.text-gray-500 {
|
|
color: $gray-500 !important;
|
|
}
|
|
|
|
.text-gray-600 {
|
|
color: $gray-600 !important;
|
|
}
|
|
|
|
.text-gray-700 {
|
|
color: $gray-700 !important;
|
|
}
|
|
|
|
.text-gray-800 {
|
|
color: $gray-800 !important;
|
|
}
|
|
|
|
.text-gray-900 {
|
|
color: $gray-900 !important;
|
|
}
|
|
|
|
.icon-circle {
|
|
height: 2.5rem;
|
|
width: 2.5rem;
|
|
border-radius: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
.stretched-link::after {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
pointer-events: auto;
|
|
content: "";
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.text-monospace {
|
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
}
|
|
|
|
.text-justify {
|
|
text-align: justify !important;
|
|
}
|
|
|
|
.text-wrap {
|
|
white-space: normal !important;
|
|
}
|
|
|
|
.text-nowrap {
|
|
white-space: nowrap !important;
|
|
}
|
|
|
|
.text-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left !important;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right !important;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center !important;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.text-sm-left {
|
|
text-align: left !important;
|
|
}
|
|
.text-sm-right {
|
|
text-align: right !important;
|
|
}
|
|
.text-sm-center {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.text-md-left {
|
|
text-align: left !important;
|
|
}
|
|
.text-md-right {
|
|
text-align: right !important;
|
|
}
|
|
.text-md-center {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.text-lg-left {
|
|
text-align: left !important;
|
|
}
|
|
.text-lg-right {
|
|
text-align: right !important;
|
|
}
|
|
.text-lg-center {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.text-xl-left {
|
|
text-align: left !important;
|
|
}
|
|
.text-xl-right {
|
|
text-align: right !important;
|
|
}
|
|
.text-xl-center {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
|
|
.text-lowercase {
|
|
text-transform: lowercase !important;
|
|
}
|
|
|
|
.text-uppercase, .dropdown .dropdown-menu .dropdown-header, .sidebar .sidebar-heading {
|
|
text-transform: uppercase !important;
|
|
}
|
|
|
|
.text-capitalize {
|
|
text-transform: capitalize !important;
|
|
}
|
|
|
|
.font-weight-light {
|
|
font-weight: 300 !important;
|
|
}
|
|
|
|
.font-weight-lighter {
|
|
font-weight: lighter !important;
|
|
}
|
|
|
|
.font-weight-normal {
|
|
font-weight: 400 !important;
|
|
}
|
|
|
|
.font-weight-bold {
|
|
font-weight: 700 !important;
|
|
}
|
|
|
|
.font-weight-bolder {
|
|
font-weight: bolder !important;
|
|
}
|
|
|
|
.font-italic {
|
|
font-style: italic !important;
|
|
}
|
|
|
|
.text-white {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #4e73df !important;
|
|
}
|
|
|
|
a.text-primary:hover, a.text-primary:focus {
|
|
color: #224abe !important;
|
|
}
|
|
|
|
.text-secondary {
|
|
color: #858796 !important;
|
|
}
|
|
|
|
a.text-secondary:hover, a.text-secondary:focus {
|
|
color: #60616f !important;
|
|
}
|
|
|
|
.text-success {
|
|
color: #1cc88a !important;
|
|
}
|
|
|
|
a.text-success:hover, a.text-success:focus {
|
|
color: #13855c !important;
|
|
}
|
|
|
|
.text-info {
|
|
color: #36b9cc !important;
|
|
}
|
|
|
|
a.text-info:hover, a.text-info:focus {
|
|
color: #258391 !important;
|
|
}
|
|
|
|
.text-warning {
|
|
color: #f6c23e !important;
|
|
}
|
|
|
|
a.text-warning:hover, a.text-warning:focus {
|
|
color: #dda20a !important;
|
|
}
|
|
|
|
.text-danger {
|
|
color: #e74a3b !important;
|
|
}
|
|
|
|
a.text-danger:hover, a.text-danger:focus {
|
|
color: #be2617 !important;
|
|
}
|
|
|
|
.text-light {
|
|
color: #f8f9fc !important;
|
|
}
|
|
|
|
a.text-light:hover, a.text-light:focus {
|
|
color: #c2cbe5 !important;
|
|
}
|
|
|
|
.text-dark {
|
|
color: #5a5c69 !important;
|
|
}
|
|
|
|
a.text-dark:hover, a.text-dark:focus {
|
|
color: #373840 !important;
|
|
}
|
|
|
|
.text-body {
|
|
color: #858796 !important;
|
|
}
|
|
|
|
.text-muted {
|
|
color: #858796 !important;
|
|
}
|
|
|
|
.text-black-50 {
|
|
color: rgba(0, 0, 0, 0.5) !important;
|
|
}
|
|
|
|
.text-white-50 {
|
|
color: rgba(255, 255, 255, 0.5) !important;
|
|
}
|
|
|
|
.text-hide {
|
|
font: 0/0 a;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
|
|
.text-decoration-none {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.text-break {
|
|
word-break: break-word !important;
|
|
word-wrap: break-word !important;
|
|
}
|
|
|
|
.text-reset {
|
|
color: inherit !important;
|
|
} |