@import "sass-zero/variables"; @import "sass-zero/mixins"; .txt { &--xs { font-size: $text-xs; } &--sm { font-size: $text-sm; } &--md { font-size: $text-base; } &--lg { font-size: $text-lg; } &--truncate { @include truncate; } &--highlight { background-color: $gray-300; margin-left: 3px; padding: 0 0.2em; border-radius: 4rem 2rem 4.2rem 1.1rem; box-shadow: 0.2em 0 0 $gray-300, -0.2em 0 0 $gray-300; } &--highlight-underline { background-image: url('data:image/svg+xml,'); background-repeat: no-repeat; background-position: center 103%; background-size: 105% } &--highlight-bottom { border-bottom: $border solid $gray-300; box-shadow: inset 0 -6px 0 $gray-300; font-style: normal; } &--normal { font-weight: $font-normal; } &--bold { font-weight: $font-bold; } &--underline { text-decoration: underline; } &--subtle { color: $gray-700; font-weight: $font-normal; } &--very-subtle { color: $gray-600; font-weight: $font-normal; } &--capitalize { text-transform: capitalize; } &--sentence-case::first-letter { text-transform: uppercase; } &--strike { text-decoration: line-through; } } .align { &--top { vertical-align: top; } &--middle { vertical-align: middle; } &--bottom { vertical-align: bottom; } &--left { text-align: left; } &--center { text-align: center; } &--right { text-align: right; } }