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