utilities.less 510 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // Utility classes
  3. // --------------------------------------------------
  4. // Floats
  5. // -------------------------
  6. .clearfix {
  7. .clearfix();
  8. }
  9. .pull-right {
  10. float: right !important;
  11. }
  12. .pull-left {
  13. float: left !important;
  14. }
  15. // Toggling content
  16. // -------------------------
  17. .hide {
  18. display: none !important;
  19. }
  20. .show {
  21. display: block !important;
  22. }
  23. .invisible {
  24. visibility: hidden;
  25. }
  26. .text-hide {
  27. .hide-text();
  28. }
  29. // For Affix plugin
  30. // -------------------------
  31. .affix {
  32. position: fixed;
  33. }