Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

56 lines
747B

  1. //
  2. // Utility classes
  3. // --------------------------------------------------
  4. // Floats
  5. // -------------------------
  6. .clearfix {
  7. .clearfix();
  8. }
  9. .center-block {
  10. .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. .show {
  25. display: block !important;
  26. }
  27. .invisible {
  28. visibility: hidden;
  29. }
  30. .text-hide {
  31. .text-hide();
  32. }
  33. // Hide from screenreaders and browsers
  34. //
  35. // Credit: HTML5 Boilerplate
  36. .hidden {
  37. display: none !important;
  38. }
  39. // For Affix plugin
  40. // -------------------------
  41. .affix {
  42. position: fixed;
  43. }