_utilities.scss 727 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // Utility classes
  3. // --------------------------------------------------
  4. // Floats
  5. // -------------------------
  6. .clearfix {
  7. @include clearfix;
  8. }
  9. .center-block {
  10. @include center-block;
  11. }
  12. .pull-right {
  13. float: right !important;
  14. }
  15. .pull-left {
  16. float: left !important;
  17. }
  18. // Toggling content
  19. // -------------------------
  20. // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
  21. .hide {
  22. display: none !important;
  23. }
  24. .invisible {
  25. visibility: hidden;
  26. }
  27. .text-hide {
  28. @include text-hide;
  29. }
  30. // Hide from screenreaders and browsers
  31. //
  32. // Credit: HTML5 Boilerplate
  33. .hidden {
  34. display: none !important;
  35. }
  36. // For Affix plugin
  37. // -------------------------
  38. .affix {
  39. position: fixed;
  40. }