2015-04-18 20:38:47 +02:00
|
|
|
//
|
2012-09-26 17:59:57 +02:00
|
|
|
// Floats
|
2015-04-18 20:38:47 +02:00
|
|
|
//
|
|
|
|
|
2012-12-20 02:49:20 +01:00
|
|
|
.clearfix {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include clearfix();
|
2012-09-26 17:59:57 +02:00
|
|
|
}
|
2015-04-18 20:38:47 +02:00
|
|
|
|
2013-09-01 11:20:58 +02:00
|
|
|
.center-block {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include center-block();
|
2013-09-01 11:20:58 +02:00
|
|
|
}
|
2014-12-16 21:29:47 +01:00
|
|
|
|
2015-11-25 11:32:41 +01:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
.pull-#{$breakpoint}-left {
|
|
|
|
@include pull-left();
|
|
|
|
}
|
|
|
|
.pull-#{$breakpoint}-right {
|
|
|
|
@include pull-right();
|
|
|
|
}
|
|
|
|
.pull-#{$breakpoint}-none {
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
}
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Screenreaders
|
|
|
|
//
|
|
|
|
|
2015-03-31 02:36:00 +02:00
|
|
|
.sr-only {
|
|
|
|
@include sr-only();
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-only-focusable {
|
|
|
|
@include sr-only-focusable();
|
|
|
|
}
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
.invisible {
|
2015-10-23 21:30:56 +02:00
|
|
|
visibility: hidden !important;
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
2014-12-23 13:10:59 +01:00
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
.text-hide {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include text-hide();
|
2012-09-26 17:59:57 +02:00
|
|
|
}
|
|
|
|
|
2012-07-23 03:28:39 +02:00
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
//
|
|
|
|
// Text
|
|
|
|
//
|
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
// Alignment
|
2015-08-11 07:46:43 +02:00
|
|
|
|
2015-10-23 21:24:39 +02:00
|
|
|
.text-justify { text-align: justify !important; }
|
|
|
|
.text-nowrap { white-space: nowrap !important; }
|
2014-12-11 23:12:10 +01:00
|
|
|
.text-truncate { @include text-truncate; }
|
2014-09-19 04:15:01 +02:00
|
|
|
|
2015-08-11 07:46:43 +02:00
|
|
|
// Responsive alignment
|
|
|
|
|
2015-10-23 20:49:45 +02:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2015-11-22 21:29:48 +01:00
|
|
|
.text-#{$breakpoint}-left { text-align: left !important; }
|
|
|
|
.text-#{$breakpoint}-right { text-align: right !important; }
|
|
|
|
.text-#{$breakpoint}-center { text-align: center !important; }
|
2015-10-23 20:49:45 +02:00
|
|
|
}
|
2015-08-11 07:46:43 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
// Transformation
|
2015-08-11 07:46:43 +02:00
|
|
|
|
2015-10-23 21:26:31 +02:00
|
|
|
.text-lowercase { text-transform: lowercase !important; }
|
|
|
|
.text-uppercase { text-transform: uppercase !important; }
|
|
|
|
.text-capitalize { text-transform: capitalize !important; }
|
2014-09-19 04:15:01 +02:00
|
|
|
|
2015-12-07 02:37:55 +01:00
|
|
|
// Weight and italics
|
2015-12-07 01:39:55 +01:00
|
|
|
|
2015-12-07 02:43:25 +01:00
|
|
|
.font-weight-normal { font-weight: normal; }
|
|
|
|
.font-weight-bold { font-weight: bold; }
|
|
|
|
.font-italic { font-style: italic; }
|
2015-12-07 01:39:55 +01:00
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
// Contextual colors
|
2015-08-11 07:46:43 +02:00
|
|
|
|
2014-09-19 04:15:01 +02:00
|
|
|
.text-muted {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $text-muted;
|
2014-09-19 04:15:01 +02:00
|
|
|
}
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
@include text-emphasis-variant('.text-primary', $brand-primary);
|
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-success', $brand-success);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-info', $brand-info);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-warning', $brand-warning);
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2015-08-14 08:47:47 +02:00
|
|
|
@include text-emphasis-variant('.text-danger', $brand-danger);
|