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.
 
 
 
 
 
 

135 lines
2.8 KiB

  1. html {
  2. min-height: 100%;
  3. }
  4. body {
  5. height: 100%;
  6. /* The html and body elements cannot have any padding or margin. */
  7. margin: 0px;
  8. padding: 0px !important;
  9. }
  10. html,
  11. body {
  12. overflow-x: hidden;
  13. /* Prevent scroll on narrow devices */
  14. }
  15. .offcanvas-main-section-overlay {
  16. display: none;
  17. cursor: pointer;
  18. opacity: 0.5;
  19. }
  20. .sidebar-padding {
  21. padding: 12px 14px;
  22. }
  23. .offcanvas .sidebar .sidebar-menu > li > .btn-group,
  24. .offcanvas .sidebar .sidebar-menu > li > a,
  25. .offcanvas .sidebar .dropdown-menu > li > a {
  26. padding: 12px 14px;
  27. display: block;
  28. whitespace: nowrap;
  29. transition: 0.2s;
  30. text-decoration: none !important;
  31. }
  32. .offcanvas .sidebar .dropdown-menu {
  33. padding: 0px;
  34. font-size: inherit;
  35. }
  36. .offcanvas .sidebar .dropdown-menu > li > a {
  37. padding-left: 28px;
  38. }
  39. .offcanvas .sidebar .divider {
  40. height: 1px;
  41. overflow: hidden;
  42. background-color: #EBEFF2;
  43. width: 100%;
  44. margin: 0px;
  45. }
  46. .offcanvas .sidebar .badge {
  47. right: 15px !important;
  48. top: 11px !important;
  49. }
  50. .offcanvas .sidebar .sidebar-menu > li > a:hover,
  51. .offcanvas .sidebar .dropdown-menu > li > a:hover,
  52. .offcanvas .sidebar .sidebar-menu > li > a:focus,
  53. .offcanvas .sidebar .dropdown-menu > li > a:focus,
  54. .offcanvas .sidebar .sidebar-menu > li > a:active,
  55. .offcanvas .sidebar .dropdown-menu > li > a:active {
  56. background-color: #F0F4F7;
  57. }
  58. @media (max-width: 767px) {
  59. .page-content {
  60. min-height: 200px;
  61. }
  62. .offcanvas {
  63. transition: 0.25s;
  64. }
  65. .offcanvas-main-section-overlay {
  66. bottom: 0;
  67. position: fixed;
  68. }
  69. .offcanvas-container,
  70. .offcanvas,
  71. .offcanvas-main-section {
  72. position: absolute;
  73. left: 0;
  74. right: 0;
  75. top: 0;
  76. bottom: 0;
  77. }
  78. .offcanvas.active-left,
  79. .offcanvas.active-right {
  80. position: fixed;
  81. }
  82. .offcanvas.active-left .offcanvas-main-section-overlay,
  83. .offcanvas.active-right .offcanvas-main-section-overlay {
  84. z-index: 1031;
  85. display: block;
  86. bottom: 0;
  87. }
  88. .offcanvas.active-left {
  89. -webkit-transform: translate3d(75%, 0, 0);
  90. transform: translate3d(75%, 0, 0);
  91. }
  92. .offcanvas.active-right {
  93. -webkit-transform: translate3d(-75%, 0, 0);
  94. transform: translate3d(-75%, 0, 0);
  95. }
  96. .offcanvas .sidebar {
  97. position: fixed;
  98. top: 0;
  99. bottom: 0;
  100. width: 75%;
  101. /* 9 columns */
  102. overflow-x: hidden;
  103. overflow-y: auto;
  104. font-size: 12px;
  105. }
  106. .offcanvas .sidebar-right {
  107. left: 100%;
  108. border-left: 1px solid #d1d8dd;
  109. }
  110. .offcanvas .sidebar-left {
  111. right: 100%;
  112. border-right: 1px solid #d1d8dd;
  113. }
  114. .offcanvas .sidebar-menu {
  115. margin-bottom: 0;
  116. }
  117. .offcanvas .navbar-form {
  118. margin: 0px;
  119. }
  120. .offcanvas .sidebar ul {
  121. margin: 0px;
  122. }
  123. .offcanvas .sidebar-page-sidebar {
  124. border-top: 1px solid #d1d8dd;
  125. }
  126. .offcanvas .sidebar-label {
  127. text-transform: uppercase;
  128. color: #8D99A6;
  129. font-size: 85%;
  130. margin: 0px;
  131. font-weight: bold;
  132. padding: 10px 15px 0px;
  133. }
  134. }