Vendor app Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

162 行
2.2 KiB

  1. .container {
  2. display: flex;
  3. width: 100%;
  4. height: 100%;
  5. align-items: stretch;
  6. }
  7. .order-stats {
  8. width: 70%;
  9. ul {
  10. list-style: none;
  11. }
  12. li {
  13. display: flex;
  14. width: 90%;
  15. margin: 30px auto;
  16. background-color: white;
  17. border-radius: 10px;
  18. padding: 15px;
  19. justify-content: space-between;
  20. align-items: center;
  21. .column {
  22. letter-spacing: 0.5px;
  23. header {
  24. font-weight: 500;
  25. color: var(--dark-grey);
  26. font-size: 16px;
  27. }
  28. p {
  29. font-size: 14px;
  30. color: var(--grey);
  31. margin-top: 10px;
  32. }
  33. &:nth-child(1) {
  34. width: 40%;
  35. }
  36. &:nth-child(2) {
  37. width: 100px;
  38. color: var(--grey);
  39. font-size: 14px;
  40. .count {
  41. font-size: 36px;
  42. font-weight: 700;
  43. color: var(--dark-grey);
  44. display: inline-block;
  45. }
  46. }
  47. button {
  48. width: 100px;
  49. }
  50. }
  51. }
  52. }
  53. .pending-orders {
  54. width: 30%;
  55. background-color: white;
  56. padding: 30px 30px;
  57. list-style: none;
  58. height: calc(100vh - 70px);
  59. overflow: auto;
  60. &:hover {
  61. &::-webkit-scrollbar {
  62. display: block;
  63. }
  64. }
  65. &::-webkit-scrollbar {
  66. width: 8px;
  67. display: none;
  68. }
  69. /* Track */
  70. &::-webkit-scrollbar-track {
  71. background-color: white;
  72. }
  73. /* Handle */
  74. &::-webkit-scrollbar-thumb {
  75. background-color: rgba(black, 0.2);
  76. }
  77. /* Handle on hover */
  78. &::-webkit-scrollbar-thumb:hover {
  79. background-color: rgba(black, 0.5);
  80. }
  81. .heading {
  82. display: flex;
  83. width: 100%;
  84. justify-content: space-between;
  85. align-items: center;
  86. header {
  87. font-size: 16px;
  88. letter-spacing: 1px;
  89. font-weight: 500;
  90. }
  91. a {
  92. color: var(--brand-blue);
  93. text-decoration: underline;
  94. font-size: 14px;
  95. }
  96. }
  97. li {
  98. padding: 10px 0;
  99. margin: 20px 0;
  100. border-top: 1px solid #cecece;
  101. }
  102. .info {
  103. display: flex;
  104. width: 100%;
  105. justify-content: space-between;
  106. margin: 15px 0;
  107. font-weight: 500;
  108. label {
  109. font-size: 13px;
  110. color: var(--grey);
  111. }
  112. span {
  113. font-size: 13px;
  114. }
  115. }
  116. .name-holder {
  117. border-bottom: 1px solid #efefef;
  118. .name {
  119. font-size: 16px;
  120. font-weight: 500;
  121. color: var(--dark-grey);
  122. }
  123. }
  124. .action-buttons {
  125. display: flex;
  126. width: 100%;
  127. button {
  128. &:first-child {
  129. background-color: var(--brand-blue);
  130. margin-right: 10px;
  131. }
  132. }
  133. }
  134. }