teams.component.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. @mixin teams-theme() {
  2. app-teams {
  3. .teams-list {
  4. width: 100%;
  5. height: 100%;
  6. background-color: $off-white;
  7. border-radius: 20px;
  8. margin: 2rem 0;
  9. .teams-filter {
  10. width: 100%;
  11. padding: 20px;
  12. padding-bottom: 40px;
  13. h1 {
  14. color: $main-color;
  15. font-weight: bold;
  16. font-size: 25px;
  17. }
  18. &__filter {
  19. button {
  20. background-color: #009fe33f;
  21. border: 1px dashed $main-color;
  22. padding: 10px 20px;
  23. border-radius: 10px;
  24. color: $main-color;
  25. font-weight: bold;
  26. font-size: 16px;
  27. cursor: pointer;
  28. }
  29. select {
  30. background-color: #2f2c8333;
  31. border: 1px solid #2f2c8333;
  32. padding: 10px 30px;
  33. border-radius: 10px;
  34. }
  35. }
  36. .team-setting {
  37. /* UI Properties */
  38. background: #2f2c830d;
  39. box-shadow: -2px 6px 9px #2f2c8333;
  40. border-radius: 10px;
  41. opacity: 1;
  42. border: none;
  43. }
  44. }
  45. .team-card,
  46. .team-info-card {
  47. padding: 40px 20px;
  48. width: 100%;
  49. border-radius: 20px;
  50. background: $white-color;
  51. box-shadow: -2px 6px 9px #2f2c8333;
  52. margin-bottom: 8px;
  53. h2 {
  54. color: $main-color;
  55. font-size: 20px;
  56. }
  57. p {
  58. padding: 15px 20px;
  59. border-radius: 12px;
  60. background-color: $light-blue;
  61. color: $white-color;
  62. }
  63. }
  64. .team-info-card {
  65. img {
  66. width: 80px;
  67. height: 80px;
  68. border-radius: 50%;
  69. margin-bottom: 10px;
  70. }
  71. .chat {
  72. width: 20px;
  73. height: 20px;
  74. object-fit: cover;
  75. margin-top: 5px;
  76. }
  77. h2 {
  78. color: #4b5155;
  79. font-size: 18px;
  80. }
  81. span {
  82. color: $span-color;
  83. font-size: 15px;
  84. }
  85. }
  86. }
  87. }
  88. }