task-managemnt-theme.scss 4.3 KB

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