Project: Mall App Client: Maiora
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

profile.page.scss 3.1 KiB

6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
5 vuotta sitten
6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
6 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .profile {
  2. background-image: url('../../assets/custom/background-5.svg');
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. background-position: left top;
  6. color: white;
  7. padding: 15px;
  8. .profile-details-holder {
  9. display: flex;
  10. align-items: stretch;
  11. justify-content: space-between;
  12. border-bottom: 1px solid var(--brand-blue);
  13. padding-bottom: 5px;
  14. .profile-image {
  15. width: 40px;
  16. height: 40px;
  17. border-radius: 50%;
  18. background-color: transparent;
  19. img {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. h5 {
  25. margin: 0 auto;
  26. font-size: 14px;
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. position: relative;
  31. button {
  32. position: absolute;
  33. right: 0;
  34. top: 0;
  35. font-size: 14px;
  36. color: white;
  37. background-color: transparent;
  38. border: 1px solid white;
  39. border-radius: 5px;
  40. width: 50px;
  41. height: 35px;
  42. }
  43. }
  44. p {
  45. font-size: 12px;
  46. width: 100%;
  47. margin: 10px auto;
  48. }
  49. .content {
  50. width: calc(100% - 55px);
  51. input {
  52. background-color: transparent;
  53. border: 1px solid white;
  54. font-size: 14px;
  55. padding: 10px;
  56. border-radius: 5px;
  57. }
  58. }
  59. }
  60. .location-details {
  61. display: flex;
  62. width: 100%;
  63. justify-content: space-between;
  64. align-items: center;
  65. padding-top: 15px;
  66. font-size: 12px;
  67. ion-button {
  68. margin: 0;
  69. --padding-top: 0;
  70. --padding-bottom: 0;
  71. --padding-start: 0;
  72. --padding-end: 0;
  73. width: 30px;
  74. height: 30px;
  75. border-radius: 50%;
  76. font-size: 12px;
  77. --color: var(--brand-blue);
  78. --border-radius: 50%;
  79. --background: white;
  80. }
  81. }
  82. }
  83. .tabs-holder {
  84. display: -webkit-box;;
  85. align-items: stretch;
  86. padding: 10px 0;
  87. overflow: auto;
  88. .tab {
  89. width: 90px;
  90. &.active {
  91. figure {
  92. border-color: var(--brand-blue);
  93. background-color: transparent;
  94. }
  95. span {
  96. color: var(--brand-blue);
  97. }
  98. }
  99. }
  100. figure {
  101. margin: 10px auto;
  102. padding: 10px;
  103. background-color: #efefef;
  104. border: 2px solid #efefef;
  105. width: 50px;
  106. height: 50px;
  107. border-radius: 50%;
  108. transition: border-color 0.3s;
  109. img {
  110. display: block;
  111. width: 100%;
  112. height: 100%;
  113. }
  114. }
  115. span {
  116. display: block;
  117. text-align: center;
  118. font-size: 10px;
  119. color: var(--brand-dark-grey);
  120. font-weight: 500;
  121. transition: color 0.4s;
  122. }
  123. }