This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-12-10 11:36:38 +00:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Floats
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.clearfix {
|
2015-08-12 07:06:27 +00:00
|
|
|
@include clearfix;
|
2014-12-10 11:36:38 +00:00
|
|
|
}
|
|
|
|
.center-block {
|
2015-08-12 07:06:27 +00:00
|
|
|
@include center-block;
|
2014-12-10 11:36:38 +00:00
|
|
|
}
|
|
|
|
.pull-right {
|
|
|
|
float: right !important;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Toggling content
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
|
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.show {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
.text-hide {
|
2015-08-12 07:06:27 +00:00
|
|
|
@include text-hide;
|
2014-12-10 11:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Hide from screenreaders and browsers
|
|
|
|
//
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// For Affix plugin
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.affix {
|
|
|
|
position: fixed;
|
|
|
|
}
|