wallet.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*========================================
  2. WALLET PAGE STYLE
  3. =========================================*/
  4. .my-wallet {
  5. margin-bottom: 30px;
  6. }
  7. .my-wallet p {
  8. text-transform: capitalize;
  9. margin-bottom: 5px;
  10. }
  11. .my-wallet h3 {
  12. font-size: 35px;
  13. color: var(--primary);
  14. }
  15. .wallet-card-group {
  16. display: -ms-grid;
  17. display: grid;
  18. grid-gap: 20px;
  19. -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  20. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  21. -ms-grid-rows: auto;
  22. grid-template-rows: auto;
  23. }
  24. .wallet-card {
  25. padding: 25px;
  26. border-radius: 8px;
  27. background: var(--chalk);
  28. transition: all linear .3s;
  29. -webkit-transition: all linear .3s;
  30. -moz-transition: all linear .3s;
  31. -ms-transition: all linear .3s;
  32. -o-transition: all linear .3s;
  33. }
  34. .wallet-card:hover {
  35. background: var(--primary);
  36. }
  37. .wallet-card:hover p,
  38. .wallet-card:hover h3 {
  39. color: var(--white);
  40. }
  41. .wallet-card p {
  42. text-transform: capitalize;
  43. margin-bottom: 5px;
  44. }
  45. .wallet-card p,
  46. .wallet-card h3 {
  47. transition: all linear .3s;
  48. -webkit-transition: all linear .3s;
  49. -moz-transition: all linear .3s;
  50. -ms-transition: all linear .3s;
  51. -o-transition: all linear .3s;
  52. }
  53. .add-wallet p {
  54. margin-bottom: 10px;
  55. }
  56. .wallet-form input {
  57. width: 100%;
  58. padding: 10px 20px;
  59. border-radius: 6px;
  60. background: var(--chalk);
  61. border: 1px solid var(--border);
  62. transition: all linear .3s;
  63. -webkit-transition: all linear .3s;
  64. -moz-transition: all linear .3s;
  65. -ms-transition: all linear .3s;
  66. -o-transition: all linear .3s;
  67. }
  68. .wallet-form input:focus-within {
  69. border-color: var(--primary);
  70. }
  71. .wallet-form button {
  72. font-size: 14px;
  73. font-weight: 500;
  74. padding: 10px 30px;
  75. border-radius: 6px;
  76. margin-top: 17px;
  77. text-transform: uppercase;
  78. color: var(--white);
  79. background: var(--primary);
  80. }
  81. .wallet-suggest {
  82. margin-top: 15px;
  83. padding: 0px 20px;
  84. display: -webkit-box;
  85. display: -ms-flexbox;
  86. display: flex;
  87. -webkit-box-align: start;
  88. -ms-flex-align: start;
  89. align-items: flex-start;
  90. -webkit-box-pack: start;
  91. -ms-flex-pack: start;
  92. justify-content: flex-start;
  93. }
  94. .wallet-suggest h6 {
  95. font-size: 12px;
  96. font-weight: 500;
  97. margin-right: 10px;
  98. text-transform: uppercase;
  99. }
  100. .wallet-suggest ul li {
  101. margin-right: 5px;
  102. margin-bottom: 8px;
  103. display: inline-block;
  104. }
  105. .wallet-suggest ul li a {
  106. font-size: 14px;
  107. font-weight: 500;
  108. padding: 5px 12px;
  109. line-height: 22px;
  110. border-radius: 4px;
  111. color: var(--text);
  112. background: var(--chalk);
  113. transition: all linear .3s;
  114. -webkit-transition: all linear .3s;
  115. -moz-transition: all linear .3s;
  116. -ms-transition: all linear .3s;
  117. -o-transition: all linear .3s;
  118. }
  119. .wallet-suggest ul li a:hover {
  120. color: var(--white);
  121. background: var(--primary);
  122. }
  123. .table > :not(:last-child) > :last-child > * {
  124. border-bottom-color: var(--border);
  125. }
  126. .table thead tr {
  127. background: var(--chalk);
  128. }
  129. .table thead th {
  130. font-size: 15px;
  131. line-height: 32px;
  132. color: var(--heading);
  133. }
  134. .table tbody tr th,
  135. .table tbody tr td {
  136. font-size: 15px;
  137. font-weight: 400;
  138. color: var(--text);
  139. text-align: center;
  140. text-transform: capitalize;
  141. }
  142. .table tbody tr th {
  143. border-right: 1px solid var(--border);
  144. }
  145. .table .fw-bold {
  146. font-weight: 500 !important;
  147. }
  148. .bottom-paginate {
  149. border-top: none;
  150. }
  151. @media (max-width: 991px) {
  152. .table {
  153. width: 900px;
  154. overflow-x: scroll;
  155. }
  156. }
  157. @media (max-width: 575px) {
  158. .wallet-suggest {
  159. -webkit-box-orient: vertical;
  160. -webkit-box-direction: normal;
  161. -ms-flex-direction: column;
  162. flex-direction: column;
  163. }
  164. .wallet-suggest h6 {
  165. margin: 0px 0px 10px;
  166. }
  167. }