orderlist.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*========================================
  2. ORDERLIST PAGE STYLE
  3. =========================================*/
  4. .orderlist-filter {
  5. padding: 20px 25px;
  6. margin-bottom: 30px;
  7. border-radius: 8px;
  8. background: var(--white);
  9. border: 1px solid var(--border);
  10. display: -webkit-box;
  11. display: -ms-flexbox;
  12. display: flex;
  13. -webkit-box-align: center;
  14. -ms-flex-align: center;
  15. align-items: center;
  16. -webkit-box-pack: center;
  17. -ms-flex-pack: center;
  18. justify-content: center;
  19. -webkit-box-pack: justify;
  20. -ms-flex-pack: justify;
  21. justify-content: space-between;
  22. }
  23. .orderlist-filter h5 {
  24. text-transform: capitalize;
  25. }
  26. .filter-short {
  27. display: -webkit-box;
  28. display: -ms-flexbox;
  29. display: flex;
  30. -webkit-box-align: center;
  31. -ms-flex-align: center;
  32. align-items: center;
  33. -webkit-box-pack: center;
  34. -ms-flex-pack: center;
  35. justify-content: center;
  36. }
  37. .filter-short .form-label {
  38. font-size: 18px;
  39. margin: 0px 8px 0px 0px;
  40. color: var(--heading);
  41. }
  42. .filter-short .form-select {
  43. width: 150px;
  44. background: var(--chalk);
  45. }
  46. .orderlist {
  47. padding: 0px 30px;
  48. border-radius: 8px;
  49. margin-bottom: 30px;
  50. background: var(--white);
  51. border: 1px solid var(--border);
  52. transition: all linear .3s;
  53. -webkit-transition: all linear .3s;
  54. -moz-transition: all linear .3s;
  55. -ms-transition: all linear .3s;
  56. -o-transition: all linear .3s;
  57. }
  58. .orderlist-head {
  59. padding: 25px 0px;
  60. display: -webkit-box;
  61. display: -ms-flexbox;
  62. display: flex;
  63. -webkit-box-align: center;
  64. -ms-flex-align: center;
  65. align-items: center;
  66. -webkit-box-pack: center;
  67. -ms-flex-pack: center;
  68. justify-content: center;
  69. -webkit-box-pack: justify;
  70. -ms-flex-pack: justify;
  71. justify-content: space-between;
  72. cursor: pointer;
  73. }
  74. .orderlist-head h5 {
  75. color: var(--primary);
  76. text-transform: capitalize;
  77. }
  78. .orderlist-details {
  79. padding: 25px;
  80. border-radius: 8px;
  81. background: var(--chalk);
  82. margin-bottom: 25px;
  83. }
  84. .orderlist-details li {
  85. display: -webkit-box;
  86. display: -ms-flexbox;
  87. display: flex;
  88. -webkit-box-align: start;
  89. -ms-flex-align: start;
  90. align-items: flex-start;
  91. -webkit-box-pack: start;
  92. -ms-flex-pack: start;
  93. justify-content: flex-start;
  94. -webkit-box-pack: justify;
  95. -ms-flex-pack: justify;
  96. justify-content: space-between;
  97. margin-bottom: 20px;
  98. }
  99. .orderlist-details li:last-child {
  100. margin-bottom: 0px;
  101. }
  102. .orderlist-details li h6 {
  103. line-height: 26px;
  104. white-space: nowrap;
  105. text-transform: capitalize;
  106. }
  107. .orderlist-details li h6 small {
  108. font-size: 14px;
  109. font-weight: 400;
  110. margin-left: 3px;
  111. }
  112. .orderlist-details li p {
  113. width: 250px;
  114. text-align: right;
  115. }
  116. .orderlist-deliver {
  117. height: 215px;
  118. padding: 25px;
  119. border-radius: 8px;
  120. margin-bottom: 25px;
  121. background: var(--chalk);
  122. }
  123. .orderlist-deliver h6 {
  124. margin-bottom: 15px;
  125. white-space: nowrap;
  126. text-transform: capitalize;
  127. }
  128. .orderlist-deliver p {
  129. text-transform: capitalize;
  130. }
  131. .table-list {
  132. overflow: hidden;
  133. border-radius: 8px;
  134. margin-bottom: 30px;
  135. background: var(--chalk);
  136. }
  137. @media (max-width: 575px) {
  138. .orderlist-filter {
  139. -webkit-box-orient: vertical;
  140. -webkit-box-direction: normal;
  141. -ms-flex-direction: column;
  142. flex-direction: column;
  143. -webkit-box-pack: center;
  144. -ms-flex-pack: center;
  145. justify-content: center;
  146. }
  147. .orderlist-filter h5 {
  148. margin-bottom: 15px;
  149. }
  150. .orderlist {
  151. padding: 0px 15px;
  152. }
  153. .orderlist-head {
  154. padding: 15px 0px;
  155. }
  156. }