Project: Mall App Client: Maiora
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

152 行
3.2 KiB

  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: 15px;
  14. .profile-image {
  15. width: 40px;
  16. height: 40px;
  17. border-radius: 50%;
  18. background-color: white;
  19. }
  20. h5 {
  21. margin: 0 auto;
  22. font-size: 14px;
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. ion-button {
  27. margin: 0;
  28. font-size: 10px;
  29. }
  30. }
  31. .contact {
  32. padding: 0;
  33. margin: 10px 0 0;
  34. font-size: 10px;
  35. display: flex;
  36. justify-content: space-between;
  37. flex-wrap: wrap;
  38. width: 90%;
  39. li {
  40. width: 48%;
  41. }
  42. li:first-child {
  43. list-style: none;
  44. }
  45. }
  46. .content {
  47. width: calc(100% - 55px);
  48. }
  49. }
  50. .location-details {
  51. display: flex;
  52. width: 100%;
  53. justify-content: space-between;
  54. align-items: center;
  55. padding-top: 15px;
  56. font-size: 12px;
  57. ion-button {
  58. margin: 0;
  59. --padding-top: 0;
  60. --padding-bottom: 0;
  61. --padding-start: 0;
  62. --padding-end: 0;
  63. width: 30px;
  64. height: 30px;
  65. border-radius: 50%;
  66. font-size: 12px;
  67. --color: var(--brand-blue);
  68. --border-radius: 50%;
  69. --background: white;
  70. }
  71. }
  72. }
  73. .tabs-holder {
  74. display: flex;
  75. align-items: stretch;
  76. padding: 10px 0;
  77. .tab {
  78. width: 25%;
  79. &.active {
  80. figure {
  81. border-color: var(--brand-blue);
  82. background-color: transparent;
  83. }
  84. span {
  85. color: var(--brand-blue);
  86. }
  87. }
  88. }
  89. figure {
  90. margin: 10px auto;
  91. padding: 10px;
  92. background-color: #efefef;
  93. border: 2px solid #efefef;
  94. width: 50px;
  95. height: 50px;
  96. border-radius: 50%;
  97. transition: border-color 0.3s;
  98. img {
  99. display: block;
  100. width: 100%;
  101. height: 100%;
  102. }
  103. }
  104. span {
  105. display: block;
  106. text-align: center;
  107. font-size: 10px;
  108. color: var(--brand-dark-grey);
  109. font-weight: 500;
  110. transition: color 0.4s;
  111. }
  112. }
  113. .tab-utilities-holder {
  114. display: flex;
  115. align-items: center;
  116. justify-content: space-between;
  117. width: 100%;
  118. padding: 0 15px;
  119. margin: 0 auto;
  120. background-color: #efefef;
  121. h5 {
  122. color: var(--brand-dark-grey);
  123. font-size: 12px;
  124. margin: 0;
  125. }
  126. ion-button {
  127. --padding-end: 0;
  128. --color: var(--brand-blue);
  129. font-size: 10px;
  130. margin: 0;
  131. }
  132. }