custom.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. ul.standard-list {
  2. margin-left: 2em;
  3. }
  4. ul.standard-list li {
  5. list-style: disc;
  6. }
  7. /* Form */
  8. .form-control {
  9. padding: 6px 14px;
  10. font-size: 14px;
  11. font-weight: 300;
  12. color: var(--black);
  13. line-height: 1em;
  14. }
  15. .form-control:focus {
  16. color: var(--black);
  17. }
  18. .form-control::placeholder {
  19. color: var(--black);
  20. opacity: 0.75;
  21. }
  22. .theme-form input[type="text"].form-control.input-white,
  23. .theme-form input[type="email"].form-control.input-white,
  24. .theme-form input[type="search"].form-control.input-white,
  25. .theme-form input[type="password"].form-control.input-white,
  26. .theme-form input[type="number"].form-control.input-white,
  27. .theme-form input[type="tel"].form-control.input-white,
  28. .theme-form input[type="date"].form-control.input-white,
  29. .theme-form input[type="datetime-local"].form-control.input-white,
  30. .theme-form input[type="time"].form-control.input-white,
  31. .theme-form input[type="datetime-local"].form-control.input-white,
  32. .theme-form input[type="month"].form-control.input-white,
  33. .theme-form input[type="week"].form-control.input-white,
  34. .theme-form input[type="url"].form-control.input-white,
  35. .theme-form input[type="file"].form-control.input-white,
  36. .theme-form textarea.form-control.input-white,
  37. .theme-form select.form-control.input-white {
  38. color: var(--white);
  39. background-color: transparent;
  40. border-color: var(--white);
  41. box-shadow: none;
  42. }
  43. .theme-form .form-control.input-white::placeholder {
  44. color: var(--white);
  45. opacity: 0.75;
  46. }
  47. .form-control::placeholder {
  48. color: currentColor;
  49. opacity: 1;
  50. }
  51. .form-control::file-selector-button {
  52. padding-right: 30px;
  53. border-radius: var(--bs-border-radius);
  54. border: 1px solid;
  55. border-radius: var(--bs-border-radius);
  56. display: inline-block;
  57. margin-left: -0.74rem;
  58. scale: 1.06;
  59. height: 33px;
  60. }
  61. .form-check-input:checked {
  62. background-color: var(--theme-default);
  63. border-color: var(--white);
  64. }
  65. .form-wizard .step {
  66. height: 8px;
  67. width: 8px;
  68. background-color: var(--theme-tertiary);
  69. border-radius: 8px;
  70. will-change: width;
  71. transition: width 0.5s ease;
  72. }
  73. .form-wizard .step.active {
  74. width: 24px;
  75. }
  76. .form-wizard .step.finish {
  77. background-color: var(--theme-tertiary);
  78. }
  79. a#prevBtn {
  80. position: absolute;
  81. font-size: 25px;
  82. }
  83. /* END - Form */
  84. /* Buttons */
  85. .btn {
  86. text-transform: uppercase;
  87. font-size: 16px;
  88. }
  89. .btn-secondary {
  90. background-color: var(--theme-secondary);
  91. border: 1px solid var(--theme-secondary);
  92. color: var(--theme-default);
  93. }
  94. .btn-secondary:hover,
  95. .btn-secondary:focus,
  96. .btn-secondary.active,
  97. .btn-secondary:active:focus,
  98. .btn-secondary.show {
  99. background-color: var(--theme-primary);
  100. }
  101. .btn-medium {
  102. width: 110px;
  103. max-width: 100%;
  104. }
  105. .btn-large {
  106. width: 200px;
  107. max-width: 100%;
  108. }
  109. /* END - Buttons */
  110. .badge {
  111. pointer-events: none;
  112. }
  113. .text-underline {
  114. text-decoration: underline !important;
  115. }
  116. /* Frontend */
  117. .login-card,
  118. .registration-card,
  119. .onboarding-card {
  120. min-height: 100vh;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. margin: 0 auto;
  125. padding: 30px 12px;
  126. background: none;
  127. background-color: var(--bs-body-bg);
  128. }
  129. .registration-card,
  130. .onboarding-card {
  131. background-color: var(--primary-color);
  132. }
  133. .login-card .login-main,
  134. .registration-card .registration-main,
  135. .onboarding-card .onboarding-main {
  136. max-width: 650px;
  137. width: calc(100dvw - 15px);
  138. padding: 80px 40px;
  139. border-radius: 40px;
  140. box-shadow: 0 0 37px rgba(0, 0, 0, 0.05);
  141. margin: 0 auto;
  142. background-color: var(--bs-body-bg);
  143. min-height: 700px;
  144. }
  145. .registration-card .registration-main,
  146. .onboarding-card .onboarding-main {
  147. max-width: 1075px;
  148. background-color: var(--bs-body-bg);
  149. }
  150. .login-card .login-main .login-inner {
  151. max-width: 422px;
  152. }
  153. .registration-card .registration-main .registration-inner {
  154. max-width: 860px;
  155. }
  156. .onboarding-card .onboarding-main .onboarding-inner {
  157. max-width: 690px;
  158. }
  159. .login-card .login-main .login-inner .form-logo,
  160. .registration-card .registration-main .registration-inner .form-logo,
  161. .onboarding-card .onboarding-main .onboarding-inner .form-logo {
  162. max-width: min(330px, 100%);
  163. }
  164. .login-card .login-main .theme-form label,
  165. .registration-card .registration-main .theme-form label {
  166. font-size: 16px;
  167. font-weight: 600;
  168. }
  169. .onboarding-card .onboarding-main .theme-form label {
  170. font-size: 16px;
  171. font-weight: 400;
  172. }
  173. .login-card .login-main .theme-form input::-webkit-input-placeholder {
  174. color: inherit;
  175. }
  176. .login-card .login-main .theme-form .form-group {
  177. margin-bottom: 0;
  178. }
  179. .show-hide span {
  180. cursor: pointer;
  181. font-size: 18px;
  182. color: var(--theme-default);
  183. font-family: "iconly" !important;
  184. speak: never;
  185. font-style: normal;
  186. font-variant: normal;
  187. text-transform: none;
  188. font-weight: normal;
  189. -webkit-font-smoothing: antialiased;
  190. -moz-osx-font-smoothing: grayscale;
  191. font-weight: 300;
  192. }
  193. .show-hide span.show:before {
  194. content: "\e950";
  195. }
  196. .show-hide span:before {
  197. content: "\e932";
  198. }
  199. .login-card .login-main .theme-form .show-hide,
  200. .registration-card .registration-main .theme-form .show-hide,
  201. .onboarding-card .onboarding-main .theme-form .show-hide {
  202. top: 50%;
  203. }
  204. .login-card input[type="password"] {
  205. padding: 6px 60px 6px 14px !important;
  206. }
  207. .theme-form input[type="text"],
  208. .theme-form input[type="email"],
  209. .theme-form input[type="search"],
  210. .theme-form input[type="password"],
  211. .theme-form input[type="number"],
  212. .theme-form input[type="tel"],
  213. .theme-form input[type="date"],
  214. .theme-form input[type="datetime-local"],
  215. .theme-form input[type="time"],
  216. .theme-form input[type="datetime-local"],
  217. .theme-form input[type="month"],
  218. .theme-form input[type="week"],
  219. .theme-form input[type="url"],
  220. .theme-form input[type="file"],
  221. .theme-form textarea,
  222. .theme-form select {
  223. border-color: var(--border-color);
  224. background-color: transparent;
  225. font-size: 14px;
  226. padding: 6px 14px;
  227. box-shadow: none;
  228. font-weight: 300;
  229. height: 35px;
  230. }
  231. @media (max-width: 991.98px) {
  232. .login-card .login-main {
  233. width: 550px;
  234. }
  235. }
  236. @media (max-width: 575.98px) {
  237. .login-card .login-main .theme-form .form-group {
  238. margin-bottom: 0;
  239. }
  240. }
  241. /* END - Frontend */
  242. /* sidebar */
  243. .page-sidebar {
  244. margin-top: 83px;
  245. background: var(--theme-default);
  246. }
  247. .page-sidebar .sidebar-menu::-webkit-scrollbar {
  248. width: 5px;
  249. height: 7px;
  250. border-color: var(--theme-default);
  251. }
  252. .page-sidebar .sidebar-menu::-webkit-scrollbar-thumb {
  253. background-color: var(--white);
  254. border-radius: 10px;
  255. }
  256. .page-sidebar .sidebar-menu::-webkit-scrollbar-track {
  257. background: var(--theme-default);
  258. border-color: var(--theme-default);
  259. }
  260. .simplebar-wrapper {
  261. width: 100%;
  262. }
  263. .page-wrapper.compact-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .simplebar-wrapper .simplebar-content {
  264. gap: 10px;
  265. }
  266. .sidebar-menu {
  267. padding: 15px;
  268. }
  269. .page-sidebar .sidebar-menu .sidebar-list {
  270. border: none;
  271. }
  272. .page-sidebar .sidebar-submenu {
  273. margin-left: 55px;
  274. margin-bottom: 20px;
  275. border-left: 1px solid var(--white);
  276. }
  277. .page-sidebar .sidebar-submenu li {
  278. list-style-type: none;
  279. }
  280. .page-sidebar .sidebar-submenu a {
  281. padding-left: 4px;
  282. color: var(--white);
  283. font-size: 14px;
  284. font-weight: 300;
  285. }
  286. .page-sidebar .sidebar-submenu a::before {
  287. display: none;
  288. }
  289. .sidebar-menu .sidebar-list:hover .sidebar-link,
  290. .sidebar-menu .sidebar-list .sidebar-link.active {
  291. background: transparent;
  292. color: var(--white);
  293. border: none;
  294. }
  295. .page-sidebar .sidebar-menu .sidebar-list:has(.active) {
  296. background-color: var(--color-lilla);
  297. border-radius: 10px;
  298. color: var(--white);
  299. }
  300. .page-sidebar .sidebar-submenu:has(.active) {
  301. display: block;
  302. }
  303. .sidebar-menu .sidebar-list:hover .sidebar-link i,
  304. .sidebar-menu .sidebar-list:hover .sidebar-link a,
  305. .sidebar-menu .sidebar-list:hover .sidebar-link span{
  306. color: var(--white);
  307. }
  308. .sidebar-menu .sidebar-list .sidebar-link {
  309. color: var(--white);
  310. font-size: 16px;
  311. font-weight: 400;
  312. }
  313. .sidebar-menu .sidebar-list .sidebar-link .main-icon {
  314. margin-left: 0;
  315. margin-right: 15px;
  316. }
  317. .sidebar-menu .sidebar-list .sidebar-link {
  318. background-color: transparent;
  319. color: var(--white);
  320. border-radius: unset;
  321. font-size: 16px;
  322. font-weight: 300;
  323. }
  324. /* END - sidebar */
  325. .row.w-100 {
  326. width: calc(100% + var(--bs-gutter-x)) !important;
  327. }
  328. .notification-icon {
  329. display: flex;
  330. width: 36px;
  331. height: 36px;
  332. justify-content: center;
  333. align-items: center;
  334. border: 1px solid;
  335. border-radius: 100%;
  336. cursor: pointer;
  337. color: var(--theme-default);
  338. }
  339. /* Content */
  340. .page-wrapper .page-body-wrapper .page-body {
  341. min-height: calc(100dvh - 83px);
  342. }