profile-theme.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. @mixin profile-theme() {
  2. app-profile {
  3. .profile {
  4. height: 100%;
  5. gap: 20px;
  6. .profile-menu {
  7. height: 80%;
  8. background-color: $off-white;
  9. margin: 2rem 0;
  10. box-shadow: -2px 6px 9px #2f2c8333;
  11. border-radius: 18px;
  12. }
  13. &__content {
  14. height: 80%;
  15. margin: 2rem 0;
  16. border-radius: 18px;
  17. }
  18. .profile-menu {
  19. ul {
  20. padding: 20px;
  21. list-style: none;
  22. gap: 20px;
  23. li {
  24. padding: 10px;
  25. border-radius: 20px;
  26. color: $main-color;
  27. cursor: pointer;
  28. }
  29. }
  30. }
  31. .profile-user {
  32. background-color: $off-white;
  33. margin-bottom: 20px;
  34. padding: 20px;
  35. border-radius: 18px;
  36. img {
  37. width: 100px;
  38. height: 100px;
  39. border-radius: 50%;
  40. }
  41. div {
  42. p {
  43. font-size: 18px;
  44. color: $black-color;
  45. margin-bottom: 5px;
  46. }
  47. span {
  48. font-size: 14px;
  49. color: $black-color;
  50. }
  51. }
  52. &__actions {
  53. button {
  54. color: $main-color;
  55. background-color: #2f2c8326;
  56. box-shadow: -2px 6px 9px #2f2c8333;
  57. border-radius: 18px;
  58. padding: 10px 30px;
  59. border: none;
  60. font-size: 16px;
  61. font-weight: 700;
  62. cursor: pointer;
  63. }
  64. }
  65. }
  66. .basic-info {
  67. background-color: $off-white;
  68. padding: 20px;
  69. border-radius: 18px;
  70. height: 80%;
  71. position: relative;
  72. .card {
  73. background: $white-color;
  74. box-shadow: 0px 5px 6px #2f2c8324;
  75. border: 0.5px solid #2f2c83;
  76. padding: 20px 0;
  77. border-radius: 20px;
  78. padding-bottom: 0;
  79. h1 {
  80. text-align: center;
  81. font-size: 15px;
  82. color: $main-color;
  83. border-bottom: 1px solid #ccc;
  84. padding-bottom: 10px;
  85. }
  86. p {
  87. text-align: center;
  88. padding: 2rem 0;
  89. font-size: 13px;
  90. }
  91. }
  92. }
  93. }
  94. }
  95. .edit {
  96. color: $main-color;
  97. background-color: #2f2c8326;
  98. box-shadow: -2px 6px 9px #2f2c8333;
  99. border-radius: 18px;
  100. padding: 10px 30px;
  101. border: none;
  102. font-size: 16px;
  103. font-weight: 700;
  104. cursor: pointer;
  105. position: absolute;
  106. right: 1rem;
  107. }
  108. }