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.

il y a 9 mois
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. html,
  2. body {
  3. overflow-x: hidden; /* Prevent scroll on narrow devices */
  4. }
  5. body {
  6. padding-top: 56px;
  7. }
  8. @media (max-width: 991.98px) {
  9. .offcanvas-collapse {
  10. position: fixed;
  11. top: 56px; /* Height of navbar */
  12. bottom: 0;
  13. left: 100%;
  14. width: 100%;
  15. padding-right: 1rem;
  16. padding-left: 1rem;
  17. overflow-y: auto;
  18. visibility: hidden;
  19. background-color: #343a40;
  20. transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  21. transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  22. transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  23. }
  24. .offcanvas-collapse.open {
  25. visibility: visible;
  26. -webkit-transform: translateX(-100%);
  27. transform: translateX(-100%);
  28. }
  29. }
  30. .nav-scroller {
  31. position: relative;
  32. z-index: 2;
  33. height: 2.75rem;
  34. overflow-y: hidden;
  35. }
  36. .nav-scroller .nav {
  37. display: -ms-flexbox;
  38. display: flex;
  39. -ms-flex-wrap: nowrap;
  40. flex-wrap: nowrap;
  41. padding-bottom: 1rem;
  42. margin-top: -1px;
  43. overflow-x: auto;
  44. color: rgba(255, 255, 255, .75);
  45. text-align: center;
  46. white-space: nowrap;
  47. -webkit-overflow-scrolling: touch;
  48. }
  49. .nav-underline .nav-link {
  50. padding-top: .75rem;
  51. padding-bottom: .75rem;
  52. font-size: .875rem;
  53. color: #6c757d;
  54. }
  55. .nav-underline .nav-link:hover {
  56. color: #007bff;
  57. }
  58. .nav-underline .active {
  59. font-weight: 500;
  60. color: #343a40;
  61. }
  62. .text-white-50 { color: rgba(255, 255, 255, .5); }
  63. .bg-purple { background-color: #6f42c1; }
  64. .lh-100 { line-height: 1; }
  65. .lh-125 { line-height: 1.25; }
  66. .lh-150 { line-height: 1.5; }