mixyll/_sass/basscss/_utility-typography.scss

39 lines
398 B
SCSS
Raw Normal View History

2020-01-24 11:20:29 +00:00
/* Basscss Utility Typography */
.bold {
font-weight: $bold-font-weight;
}
.regular {
font-weight: normal;
}
.italic {
font-style: italic;
}
.caps {
text-transform: uppercase;
letter-spacing: .2em;
}
.left-align {
text-align: left;
}
.center {
text-align: center;
}
.right-align {
text-align: right;
}
.justify {
text-align: justify;
}
.nowrap {
white-space: nowrap;
}