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