task-managemnt-theme.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. @mixin task-management() {
  2. app-task-management {
  3. .task-managament {
  4. background-color: $off-white;
  5. border-radius: 25px;
  6. padding: 20px;
  7. margin: 20px 0;
  8. div {
  9. h1 {
  10. color: $main-color;
  11. margin-bottom: 30px;
  12. }
  13. }
  14. .projects {
  15. background-color: $white-color;
  16. padding: 20px 10px;
  17. border-radius: 10px;
  18. p {
  19. color: $main-color;
  20. font-size: 20px;
  21. }
  22. ul {
  23. list-style: none;
  24. border-radius: 15px;
  25. padding: 10px;
  26. li {
  27. margin-bottom: 10px;
  28. padding: 10px;
  29. border-radius: 10px;
  30. color: $main-color;
  31. transition: all 0.5s;
  32. cursor: pointer;
  33. &:hover {
  34. background-color: #2e368f26;
  35. }
  36. }
  37. }
  38. }
  39. .team-members {
  40. background-color: $white-color;
  41. padding: 20px 10px;
  42. border-radius: 10px;
  43. margin-top: 10px;
  44. p {
  45. color: $main-color;
  46. font-size: 20px;
  47. }
  48. ul {
  49. list-style: none;
  50. border-radius: 15px;
  51. padding: 10px;
  52. li {
  53. margin-bottom: 0;
  54. padding: 10px;
  55. border-radius: 10px;
  56. color: $main-color;
  57. &:hover {
  58. background-color: #2e368f26;
  59. cursor: pointer;
  60. }
  61. div {
  62. p {
  63. font-size: 16px;
  64. color: #4b5155;
  65. }
  66. span {
  67. color: green;
  68. font-size: 12px;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. main {
  75. padding: 0 40px;
  76. ul {
  77. list-style: none;
  78. li {
  79. img {
  80. width: 40px;
  81. }
  82. }
  83. .count {
  84. background-color: $white-color;
  85. border-radius: 50%;
  86. padding: 12px 10px;
  87. columns: #707070;
  88. }
  89. }
  90. }
  91. &__dashboard {
  92. background-color: $light-blue;
  93. padding: 20px;
  94. border-radius: 20px;
  95. color: $white-color;
  96. div {
  97. span {
  98. font-size: 15px;
  99. margin: 0 10px;
  100. }
  101. }
  102. }
  103. &__tasks {
  104. padding: 0 40px;
  105. ul {
  106. list-style: none;
  107. li {
  108. color: $main-color;
  109. transition: all 0.5s;
  110. padding: 10px 20px;
  111. cursor: pointer;
  112. &:hover {
  113. color: $white-color;
  114. }
  115. }
  116. }
  117. p {
  118. color: $main-color;
  119. font-size: 15px;
  120. span {
  121. background-color: #2f2c8326;
  122. border-radius: 50%;
  123. padding: 5px;
  124. font-size: 12px;
  125. }
  126. }
  127. &__type {
  128. padding: 20px 0;
  129. gap: 10px;
  130. .to-do {
  131. width: 100%;
  132. }
  133. h3 {
  134. color: $main-color;
  135. font-size: 15px;
  136. }
  137. .to-to-span,
  138. .inprogress-span,
  139. .review-span,
  140. .done-span {
  141. background-color: #ff6600;
  142. width: 10px;
  143. height: 10px;
  144. display: inline-block;
  145. border-radius: 50%;
  146. }
  147. .inprogress-span {
  148. background-color: #009fe3;
  149. }
  150. .review-span {
  151. background-color: #ffed00;
  152. }
  153. .done-span {
  154. background-color: #0fbb37;
  155. }
  156. }
  157. }
  158. .task-item {
  159. background-color: $white-color;
  160. padding: 10px 10px;
  161. margin-top: 10px;
  162. border-radius: 10px;
  163. h1 {
  164. color: #252525;
  165. font-size: 16px;
  166. margin-bottom: 5px;
  167. }
  168. p {
  169. font-size: 13px;
  170. color: $span-color;
  171. margin-bottom: 20px;
  172. }
  173. div {
  174. ul {
  175. list-style: none;
  176. padding: 0;
  177. margin: 0;
  178. li {
  179. padding: 0;
  180. margin: 0;
  181. }
  182. }
  183. }
  184. }
  185. .active-tab {
  186. color: #009fe3 !important;
  187. background-color: #009fe324;
  188. border-radius: 10px;
  189. color: $white-color;
  190. padding: 10px 20px;
  191. font-weight: bold;
  192. }
  193. }
  194. }
  195. }