New UI layout
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.

list.page.css 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
  2. :root {
  3. --topNavHeight: 75px;
  4. --rtrWidth: 60px;
  5. --lftWidth: 300px;
  6. --tpMenuPad: 30px;
  7. --icnPadng: 10px 0px;
  8. --prmBgColor: rgb(244, 244, 221);
  9. --secdBgColor: #fafaf3;
  10. --secdSubColor: #f4f4f3;
  11. }
  12. body {
  13. margin: 0px;
  14. padding: 0px;
  15. font-family: 'Poppins', sans-serif;
  16. }
  17. ul,
  18. li {
  19. margin: 0px;
  20. padding: 0px;
  21. margin-left: 0px;
  22. margin-right: 0px;
  23. padding-left: 0px;
  24. padding-right: 0px;
  25. }
  26. .list-page {
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. .tp-bar {
  31. width: 100%;
  32. position: fixed;
  33. top: 0px;
  34. left: 0px;
  35. height: var(--topNavHeight);
  36. display: flex;
  37. flex-direction: row;
  38. list-style: none;
  39. align-items: center;
  40. padding-left: 0px !important;
  41. padding-right: 0px !important;
  42. }
  43. ul.tp-bar li {
  44. margin: 0px 16px;
  45. }
  46. li.logo-li {
  47. display: flex;
  48. flex-direction: row;
  49. align-items: center;
  50. width: calc(var(--lftWidth) - var(--tpMenuPad));
  51. }
  52. .logo {
  53. font-size: 25px;
  54. margin-left: 25px;
  55. }
  56. .btm-bar {
  57. position: fixed;
  58. top: var(--topNavHeight);
  59. left: 0;
  60. height: calc(100vh -var(--topNavHeight));
  61. width: 100%;
  62. height: 100%;
  63. display: flex;
  64. flex-direction: row;
  65. }
  66. .lft-nav-bar {
  67. position: fixed;
  68. left: 0;
  69. width: var(--lftWidth);
  70. height: inherit;
  71. display: flex;
  72. flex-direction: row;
  73. }
  74. .lft-nav-bar .lft-nav-bar-1,
  75. .lft-nav-bar .lft-nav-bar-2 {
  76. list-style: none;
  77. margin-bottom: 0px !important;
  78. padding-left: 0px !important;
  79. }
  80. .lft-nav-bar-1 {
  81. width: var(--rtrWidth);
  82. display: flex;
  83. flex-direction: column;
  84. align-items: center;
  85. background-color: var(--prmBgColor);
  86. }
  87. .lft-nav-bar-1 li,
  88. .lft-nav-bar-2 li {
  89. margin: var(--icnPadng);
  90. }
  91. .lft-nav-bar-2 li {
  92. font-size: 16px;
  93. padding: 0px 15px;
  94. }
  95. .lft-nav-bar-2 {
  96. width: calc(var(--lftWidth) - var(--rtrWidth));
  97. display: flex;
  98. flex-direction: column;
  99. background-color: var(--secdBgColor);
  100. transition: width 0.3s;
  101. }
  102. .rtr-nav-bar {
  103. position: fixed;
  104. right: 0;
  105. width: var(--rtrWidth);
  106. height: inherit;
  107. background-color: var(--prmBgColor);
  108. list-style: none;
  109. display: flex;
  110. flex-direction: column;
  111. align-items: center;
  112. }
  113. .rtr-nav-bar span {
  114. margin: var(--icnPadng);
  115. }
  116. .ctr-lst-pge {
  117. position: fixed;
  118. left: var(--lftWidth);
  119. right: var(--rtrWidth);
  120. height: inherit;
  121. margin: 0px 20px;
  122. background-color: var(--secdSubColor);
  123. }
  124. .srch-bar {
  125. width: 35%;
  126. }
  127. .form-control#searchBar {
  128. padding: 10px;
  129. box-shadow: none;
  130. width: 100%;
  131. }
  132. .ml-auto {
  133. margin-left: auto !important;
  134. }
  135. .mr-auto {
  136. margin-right: auto !important;
  137. }
  138. .mt-auto {
  139. margin-top: auto !important;
  140. }
  141. .mb-auto {
  142. margin-bottom: auto !important;
  143. }
  144. .la {
  145. font-size: 20px;
  146. color: black;
  147. }
  148. .icn-circle {
  149. background-color: firebrick;
  150. color: white;
  151. padding: 10px;
  152. }
  153. .hdr {
  154. font-size: 16px;
  155. padding: 10px 5px;
  156. font-weight: 600;
  157. text-transform: capitalize;
  158. background-color: #e3e3e3;
  159. }
  160. .bdy {
  161. font-size: 16px;
  162. padding: 10px 5px;
  163. font-weight: 400;
  164. text-transform: capitalize;
  165. border-bottom: 1px solid white;
  166. align-items: center;
  167. }
  168. .mnNvIcn,
  169. .mnNvIcn:focus {
  170. box-shadow: none !important;
  171. }
  172. .lft-nav-bar.lft-nav-bar-Wrap {
  173. width: var(--rtrWidth);
  174. transition: width 0.3s;
  175. }
  176. .lft-nav-bar.lft-nav-bar-Wrap .lft-nav-bar-2 {
  177. display: none;
  178. transition: display 0.3s;
  179. }
  180. .bdy-ul {
  181. height: 100%;
  182. overflow-y: scroll;
  183. }
  184. .ctr-lst-pge.lft-nav-bar-Wrap {
  185. left: var(--rtrWidth);
  186. transition: left 0.3s;
  187. }
  188. a.badge {
  189. font-size: 14px;
  190. font-weight: 500;
  191. color: inherit;
  192. text-decoration: none;
  193. }
  194. .badge.badge-soft-green,
  195. .badge.badge-soft-success {
  196. background: #E6FBF2;
  197. color: #00D67F;
  198. }
  199. /* scroll bar start here*/
  200. ::-webkit-scrollbar {
  201. width: 6px;
  202. }
  203. /* Track */
  204. ::-webkit-scrollbar-track {
  205. background: #f1f1f1;
  206. }
  207. /* Handle */
  208. ::-webkit-scrollbar-thumb {
  209. background: #888;
  210. }
  211. /* Handle on hover */
  212. ::-webkit-scrollbar-thumb:hover {
  213. background: #555;
  214. }
  215. /* Scroll bar End Here */
  216. .pgnt {
  217. border-top-left-radius: 50px;
  218. border-top-right-radius: 50px;
  219. }