utilities.less 245 B

1234567891011121314151617181920212223
  1. // UTILITY CLASSES
  2. // ---------------
  3. // Quick floats
  4. .pull-right {
  5. float: right;
  6. }
  7. .pull-left {
  8. float: left;
  9. }
  10. // Toggling content
  11. .hide {
  12. display: none;
  13. }
  14. .show {
  15. display: block;
  16. }
  17. // Visibility
  18. .invisible {
  19. visibility: hidden;
  20. }