datat.fi/_sass/basically-basic/utilities/_text.scss

29 lines
949 B
SCSS
Raw Normal View History

2017-03-16 20:34:29 +02:00
/* ==========================================================================
Text
========================================================================== */
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
/*
Alignment
========================================================================== */
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
.text-justify { text-align: justify !important; }
.text-nowrap { white-space: nowrap !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
/*
Transformation
========================================================================== */
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
2017-03-07 23:12:17 +02:00
.text-capitalize { text-transform: capitalize !important; }
2017-03-09 21:20:28 +02:00
.text-truncate { @include text-truncate; }
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
/*
Sizing
========================================================================== */
2017-03-07 23:12:17 +02:00
2017-03-16 20:34:29 +02:00
.small { font-size: 80%; }