Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | // |
| 2 | // Utility classes |
| 3 | // -------------------------------------------------- |
| 4 | |
| 5 | // Floats |
| 6 | // ------------------------- |
| 7 | |
| 8 | .clearfix { |
| 9 | @include clearfix; |
| 10 | } |
| 11 | |
| 12 | .center-block { |
| 13 | @include center-block; |
| 14 | } |
| 15 | |
| 16 | .pull-right { |
| 17 | float: right !important; |
| 18 | } |
| 19 | |
| 20 | .pull-left { |
| 21 | float: left !important; |
| 22 | } |
| 23 | |
| 24 | // Toggling content |
| 25 | // ------------------------- |
| 26 | |
| 27 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 |
| 28 | .hide { |
| 29 | display: none !important; |
| 30 | } |
| 31 | |
| 32 | .show { |
| 33 | display: block !important; |
| 34 | } |
| 35 | |
| 36 | .invisible { |
| 37 | visibility: hidden; |
| 38 | } |
| 39 | |
| 40 | .text-hide { |
| 41 | @include text-hide; |
| 42 | } |
| 43 | |
| 44 | // Hide from screenreaders and browsers |
| 45 | // |
| 46 | // Credit: HTML5 Boilerplate |
| 47 | |
| 48 | .hidden { |
| 49 | display: none !important; |
| 50 | } |
| 51 | |
| 52 | // For Affix plugin |
| 53 | // ------------------------- |
| 54 | |
| 55 | .affix { |
| 56 | position: fixed; |
| 57 | } |