Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
335 B

  1. //
  2. // Utility classes
  3. // --------------------------------------------------
  4. // Quick floats
  5. .pull-right {
  6. float: right;
  7. }
  8. .pull-left {
  9. float: left;
  10. }
  11. // Toggling content
  12. .hide {
  13. display: none;
  14. }
  15. .show {
  16. display: block;
  17. }
  18. // Visibility
  19. .invisible {
  20. visibility: hidden;
  21. }
  22. // For Affix plugin
  23. .affix {
  24. position: fixed;
  25. }