profile-theme.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. @mixin profile-theme() {
  2. app-profile {
  3. .mat-mdc-text-field-wrapper {
  4. background-color: $white-color !important;
  5. box-shadow: 0px 5px 6px #2f2c8324;
  6. }
  7. .profile {
  8. height: 100%;
  9. gap: 20px;
  10. .profile-menu {
  11. height: 80%;
  12. background-color: $off-white;
  13. margin: 2rem 0;
  14. box-shadow: -2px 6px 9px #2f2c8333;
  15. border-radius: 18px;
  16. }
  17. &__content {
  18. height: 80%;
  19. margin: 2rem 0;
  20. border-radius: 18px;
  21. }
  22. .profile-menu {
  23. ul {
  24. padding: 20px;
  25. list-style: none;
  26. gap: 20px;
  27. li {
  28. padding: 10px;
  29. border-radius: 20px;
  30. color: $main-color;
  31. cursor: pointer;
  32. }
  33. }
  34. }
  35. .profile-user {
  36. background-color: $off-white;
  37. margin-bottom: 20px;
  38. padding: 20px;
  39. border-radius: 18px;
  40. img {
  41. width: 100px;
  42. height: 100px;
  43. border-radius: 50%;
  44. }
  45. div {
  46. p {
  47. font-size: 18px;
  48. color: $black-color;
  49. margin-bottom: 5px;
  50. }
  51. span {
  52. font-size: 14px;
  53. color: $black-color;
  54. }
  55. }
  56. &__actions {
  57. button {
  58. color: $main-color;
  59. background-color: #2f2c8326;
  60. box-shadow: -2px 6px 9px #2f2c8333;
  61. border-radius: 18px;
  62. padding: 10px 30px;
  63. border: none;
  64. font-size: 16px;
  65. font-weight: 700;
  66. cursor: pointer;
  67. }
  68. }
  69. }
  70. .basic-info {
  71. background-color: $off-white;
  72. padding: 20px;
  73. border-radius: 18px;
  74. height: 80%;
  75. position: relative;
  76. .card {
  77. background: $white-color;
  78. box-shadow: 0px 5px 6px #2f2c8324;
  79. border: 0.5px solid #2f2c83;
  80. padding: 20px 0;
  81. border-radius: 20px;
  82. padding-bottom: 0;
  83. h1 {
  84. text-align: center;
  85. font-size: 15px;
  86. color: $main-color;
  87. border-bottom: 1px solid #ccc;
  88. padding-bottom: 10px;
  89. }
  90. p {
  91. text-align: center;
  92. padding: 2rem 0;
  93. font-size: 13px;
  94. }
  95. }
  96. }
  97. }
  98. .form-input {
  99. width: 100%;
  100. label {
  101. margin-bottom: 5px;
  102. font-size: 13px;
  103. span {
  104. margin: 0 5px;
  105. }
  106. }
  107. input,
  108. select {
  109. padding: 15px 20px;
  110. border-radius: 10px;
  111. box-shadow: 0px 5px 6px #2f2c8324;
  112. border: 0.5px solid $main-color;
  113. border-radius: 10px;
  114. outline: none;
  115. }
  116. }
  117. }
  118. .edit {
  119. color: $main-color;
  120. background-color: #2f2c8326;
  121. box-shadow: -2px 6px 9px #2f2c8333;
  122. border-radius: 18px;
  123. padding: 10px 30px;
  124. border: none;
  125. font-size: 16px;
  126. font-weight: 700;
  127. cursor: pointer;
  128. position: absolute;
  129. right: 1rem;
  130. }
  131. .save-changes {
  132. background-color: #28abe3 !important;
  133. color: #fff !important;
  134. box-shadow: -2px 6px 9px #2f2c8333 !important;
  135. width: 170px;
  136. }
  137. .cancel {
  138. box-shadow: -2px 6px 9px #2f2c8333 !important;
  139. background-color: #fff !important;
  140. color: #28abe3 !important;
  141. border: 1px solid #28abe3 !important;
  142. width: 170px;
  143. }
  144. .btn {
  145. padding: 15px 20px;
  146. border: none;
  147. border-radius: 28px;
  148. cursor: pointer;
  149. }
  150. }