dashboard.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. :root {
  2. --orange: #ffab00;
  3. }
  4. body{
  5. background-color:#ffffff;
  6. font-family: 'Open Sans';
  7. }
  8. form.row div:hover {
  9. background-color:#fff7eb !important;
  10. }
  11. form.row div:not(:last-child) {
  12. }
  13. .ct-bar, .ct-line, .ct-point, .ct-slice-donut {
  14. stroke: var(--orange);
  15. }
  16. [type="radio"]:not(:checked) + label:before, [type="radio"]:not(:checked) + label:after {
  17. border: 2px solid #5a5a5a;
  18. background: white;
  19. }
  20. .iqd_small{
  21. color:black !important;
  22. margin-right:5px;
  23. }
  24. .theme-primary [type=radio]:checked + label:after{
  25. border: 2px solid var(--orange) !important;
  26. background-color: var(--orange) !important;
  27. z-index: 0;
  28. border: solid 3px white !important;
  29. }
  30. .table{
  31. font-family: 'Open Sans', sans-serif;
  32. }
  33. .table thead{
  34. border-bottom: solid 2px #e2e2e2 !important;
  35. }
  36. .table > tfoot > tr > td, .table > tfoot > tr > th{
  37. font-weight:bold;
  38. }
  39. .table tbody{
  40. background-color:#FFFFFF !important;
  41. }
  42. .table tfoot{
  43. background-color:#FAFBFF;
  44. }
  45. .tbl_h4_title
  46. {
  47. position: relative;
  48. top: calc(10% - 70px/2);
  49. font-size:16px;
  50. }
  51. .tb_row_fdiv
  52. {
  53. margin:0px;
  54. padding:0px;
  55. }
  56. #chart{
  57. background-color:#FFFAF2;
  58. border-radius:10px;
  59. }
  60. #yearly-comparison{
  61. background-color:#FAFBFF;
  62. border-radius:10px;
  63. }
  64. .box-header{
  65. background-color:#FFFAF2;
  66. border-bottom: 0px solid transparent;
  67. }
  68. .with-border2
  69. {
  70. background-color:#FAFBFF;
  71. border-bottom: 0px solid transparent;
  72. }
  73. .h-350{
  74. height: 339px !important;
  75. }
  76. .count_title{
  77. font-size:initial;
  78. color:#000000;
  79. font-weight:700;
  80. }
  81. .count_h3{
  82. text-align:center;
  83. font-weight:100;
  84. margin:0;
  85. padding:0;
  86. font-size:26px;
  87. /*font-size:x-large;*/
  88. /*font-size:4vw;*/
  89. font-weight:bold;
  90. color:#484848;
  91. }
  92. small.active
  93. {
  94. color: var(--orange) !important;
  95. }
  96. a.count_atag{
  97. text-align:center !important;
  98. }
  99. .count_small_tag
  100. {
  101. color: #010101 !important;
  102. font-style: normal;
  103. font-weight: 100;
  104. font-size:13px;
  105. text-align: right;
  106. width: 100%;
  107. display: inherit;
  108. }
  109. .tbl_row
  110. {
  111. background-color:#FAFBFF;
  112. /* border: 1px solid transparent;
  113. margin-left: 0px;
  114. margin-right: 0px;*/
  115. margin:0px;
  116. border-radius: 15px;
  117. }
  118. .right_text_div{
  119. margin: calc(100% - 100%);
  120. }
  121. .count_div{
  122. padding: 25px;
  123. background: #FFFAF2;
  124. border-radius: 15px;
  125. margin: 0px;
  126. margin-top: 10px;
  127. font-family: 'Open Sans', sans-serif;
  128. }
  129. /*start radio button*/
  130. .cust-col ,.form-check{
  131. /*background:#f9fbff !important;*/
  132. }
  133. .role-row{
  134. background:#fafbff !important;
  135. border-radius: 5px;
  136. }
  137. .table thead th{
  138. font-weight: bold !important
  139. }
  140. .table > thead > tr > td, .table > thead > tr > th {
  141. vertical-align: middle;
  142. text-align:center;
  143. background:#FFFFFF;
  144. font-size: 15px;
  145. }
  146. .theme-primary [type=radio]:checked + label:after{}
  147. .bg-dark {
  148. background-color: #000 !important;
  149. color: #ffffff !important;
  150. }
  151. .bg-yellow {
  152. background: #ffd684;
  153. padding-top: 7px !important;
  154. padding-bottom: 7px !important;
  155. }
  156. .title {
  157. font-weight: 100;
  158. }
  159. .form-label {
  160. font-size: 15px;
  161. font-weight: 600;
  162. }
  163. .btn-md {
  164. color: black !important;
  165. border: solid 1px black !important;
  166. }
  167. input[type=text],input[type=email],input[type=password]{
  168. height: 46px !important;
  169. /* height: 40px !important;
  170. width:262px !important;*/
  171. }
  172. .btn-primary{
  173. background-color: #f2f2f2 !important;
  174. border-color:white !important;
  175. color:#9b9b9b !important;
  176. }
  177. /*========================*/
  178. .theme-primary .btn-primary:hover, .theme-primary .btn-primary:active, .theme-primary .btn-primary:focus, .theme-primary .btn-primary.active{
  179. color: balck !important;
  180. border-color:var(--orange)!important;
  181. background-color:white !important;
  182. }
  183. .form-control:active,
  184. .form-select:active {
  185. height: 46px !important;
  186. border-color: var(--orange)!important;
  187. color:var(--orange)!important;
  188. }
  189. .form-control, .form-select {
  190. height: 46px !important;
  191. border-radius: 10px !important;
  192. border-color:#E4E6EB !important;
  193. }
  194. select:focus{
  195. border-color: var(--orange) !important;
  196. color: var(--orange) !important;
  197. }
  198. .frow .btn-md{
  199. background:transparent !important;
  200. color: var(--orange) !important;
  201. border-color: var(--orange) !important;
  202. }
  203. .frow .btn-md:hover {
  204. background-color: var(--orange) !important;
  205. border-color:var(--orange) !important;
  206. color:white !important;
  207. }
  208. .btn-md:hover {
  209. background-color: var(--orange) !important;
  210. border-color:var(--orange) !important;
  211. color:white !important;
  212. }
  213. }
  214. /*====start table=======*/
  215. /*.table-striped > tbody > tr:nth-of-type(2) {
  216. background:#FFF8EC !important;
  217. --bs-table-accent-bg: rgb(246 246 246 / 5%);
  218. color: var(--bs-table-striped-color);
  219. .table-striped > tbody > tr {
  220. --bs-table-accent-bg: #fff8ec;
  221. color: var(--bs-table-striped-color);
  222. }*/
  223. .table-striped > tbody > tr:nth-of-type(odd) {
  224. --bs-table-accent-bg: transparent;
  225. color: var(--bs-table-striped-color);
  226. }
  227. .row_background{
  228. background:#FFF8EC !important;
  229. --bs-table-accent-bg: rgb(246 246 246 / 5%);
  230. color: var(--bs-table-striped-color);
  231. .table-striped > tbody > tr {
  232. --bs-table-accent-bg: #fff8ec;
  233. color: var(--bs-table-striped-color);
  234. }
  235. .table > thead tr td,
  236. .table > thead tr th {
  237. background-color:#FAFBFF;
  238. }
  239. .table > tbody > tr > td,
  240. .table > tbody > tr > th {
  241. font-size: 15px;
  242. }
  243. .table > tbody > tr > td {
  244. border-bottom-width: 0;
  245. padding: 1.5rem;
  246. }
  247. .table tfoot tr th{
  248. font-weight:600 !important;
  249. color:black;
  250. }
  251. .table .btn{
  252. border-color: var(--orange) !important;
  253. background-color: transparent !important;
  254. color:var(--orange) !important;
  255. }
  256. .table .btn:hover{
  257. background-color: var(--orange) !important;
  258. border-color:var(--orange) !important;
  259. color:white !important;
  260. }
  261. /*====end table=======*/
  262. .btn-toggle.btn-sm, .btn-toggle.btn-sm > .handle {
  263. border-radius: 16px;
  264. }
  265. .orange_text
  266. {
  267. color:var(--orange) !important;
  268. text-width:bold;
  269. }
  270. .add-outlet::before{
  271. background-image:url('../images/icons/plushape.png')
  272. }
  273. .h3largetext{
  274. font-size: x-large !important;
  275. }
  276. @media (max-width: 767px) {
  277. .btn-md {
  278. width: 100%;
  279. }
  280. .full-nav-width{
  281. width:100% !important;
  282. }
  283. }
  284. @media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1)
  285. {
  286. }