| // | |
| // Utility classes | |
| // -------------------------------------------------- | |
| // Floats | |
| // ------------------------- | |
| .clearfix { | |
| @include clearfix; | |
| } | |
| .center-block { | |
| @include center-block; | |
| } | |
| .pull-right { | |
| float: right ; | |
| } | |
| .pull-left { | |
| float: left ; | |
| } | |
| // Toggling content | |
| // ------------------------- | |
| // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 | |
| .hide { | |
| display: none ; | |
| } | |
| .show { | |
| display: block ; | |
| } | |
| .invisible { | |
| visibility: hidden; | |
| } | |
| .text-hide { | |
| @include text-hide; | |
| } | |
| // Hide from screenreaders and browsers | |
| // | |
| // Credit: HTML5 Boilerplate | |
| .hidden { | |
| display: none ; | |
| } | |
| // For Affix plugin | |
| // ------------------------- | |
| .affix { | |
| position: fixed; | |
| } | |