mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
53 lines
976 B
Plaintext
53 lines
976 B
Plaintext
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
@each $color in (primary, secondary, success, info, warning, danger) {
|
|
.text--$(color) {
|
|
color: var(--ifm-color-$(color));
|
|
}
|
|
}
|
|
|
|
@each $align in (center, left, justify, right) {
|
|
.text--$(align) {
|
|
text-align: $align;
|
|
}
|
|
}
|
|
|
|
@each $transform in (capitalize, lowercase, uppercase) {
|
|
.text--$(transform) {
|
|
text-transform: $transform;
|
|
}
|
|
}
|
|
|
|
@each $weight in (light, normal, semibold, bold) {
|
|
.text--$(weight) {
|
|
font-weight: var(--ifm-font-weight-$(weight));
|
|
}
|
|
}
|
|
|
|
.text--italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.text--truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.text--break {
|
|
overflow-wrap: break-word !important;
|
|
word-break: break-word !important;
|
|
}
|
|
|
|
.text--no-decoration {
|
|
&,
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|