2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
// Floats
|
|
|
|
// -------------------------
|
|
|
|
|
2012-12-19 20:49:20 -05:00
|
|
|
.clearfix {
|
2013-03-30 16:23:18 -04:00
|
|
|
.clearfix();
|
2012-09-26 11:59:57 -04:00
|
|
|
}
|
2013-09-01 05:20:58 -04:00
|
|
|
.center-block {
|
|
|
|
.center-block();
|
|
|
|
}
|
2012-01-08 18:38:57 -05:00
|
|
|
.pull-right {
|
2013-07-28 02:05:47 -04:00
|
|
|
float: right !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.pull-left {
|
2013-07-28 02:05:47 -04:00
|
|
|
float: left !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
|
2012-09-26 11:59:57 -04:00
|
|
|
|
2012-01-08 18:38:57 -05:00
|
|
|
// Toggling content
|
2012-09-26 11:59:57 -04:00
|
|
|
// -------------------------
|
|
|
|
|
2013-09-23 15:46:57 -04:00
|
|
|
// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
|
2012-01-08 18:38:57 -05:00
|
|
|
.hide {
|
2012-12-20 16:53:38 -05:00
|
|
|
display: none !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.show {
|
2012-12-20 16:53:38 -05:00
|
|
|
display: block !important;
|
2012-01-08 18:38:57 -05:00
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-09-26 11:59:57 -04:00
|
|
|
.text-hide {
|
2013-08-24 01:11:41 -04:00
|
|
|
.text-hide();
|
2012-09-26 11:59:57 -04:00
|
|
|
}
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
|
2013-10-13 22:59:42 -04:00
|
|
|
// Hide from screenreaders and browsers
|
|
|
|
//
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
visibility: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 00:12:52 -04:00
|
|
|
// For Affix plugin
|
2012-09-26 11:59:57 -04:00
|
|
|
// -------------------------
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-20 00:12:52 -04:00
|
|
|
}
|