style.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. #loginLog {
  2. padding: 0 32px 32px 32px;
  3. h1 {
  4. font-size: 22px;
  5. margin-bottom: 10px;
  6. }
  7. .list-header {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. margin-bottom: 10px;
  12. flex-wrap: wrap;
  13. gap: 0.5rem;
  14. .summary {
  15. font-size: 16px;
  16. }
  17. }
  18. #loginTypeTab {
  19. display: flex;
  20. button {
  21. padding: 0.5rem 1rem;
  22. font-size: 0.875rem;
  23. color: var(--text-secondary);
  24. border-bottom: 2px solid transparent;
  25. transition: color 0.2s, border-color 0.2s;
  26. &:hover {
  27. color: var(--brand-orange);
  28. border-bottom-color: var(--brand-orange);
  29. }
  30. &.active {
  31. color: var(--text-link);
  32. font-weight: 600;
  33. border-bottom-color: var(--text-link);
  34. }
  35. }
  36. }
  37. .mypage-list {
  38. border-top: 1px solid var(--border-default);
  39. margin: 0.75rem 0;
  40. article:nth-of-type(1) {
  41. background-color: #f9fafb;
  42. border-bottom: 1px solid var(--border-default);
  43. padding: 0.5rem 0;
  44. ul {
  45. display: grid;
  46. grid-template-columns:
  47. clamp(100px, 18%, 160px)
  48. 1fr
  49. 1fr
  50. 1fr
  51. clamp(50px, 10%, 80px);
  52. column-gap: 0.75rem;
  53. li {
  54. text-align: center;
  55. font-size: 0.875rem;
  56. color: var(--text-secondary);
  57. }
  58. }
  59. @media (max-width: 1024px) {
  60. display: none;
  61. }
  62. }
  63. article:nth-of-type(2) {
  64. box-sizing: border-box;
  65. section {
  66. padding: 0.5rem 0;
  67. box-sizing: inherit;
  68. border-bottom: 1px solid var(--border-default);
  69. &:hover {
  70. background-color: #faffd1;
  71. }
  72. // PC
  73. ol {
  74. display: grid;
  75. grid-template-columns:
  76. clamp(100px, 18%, 160px)
  77. 1fr
  78. 1fr
  79. 1fr
  80. clamp(50px, 10%, 80px);
  81. column-gap: 0.75rem;
  82. align-items: center;
  83. li {
  84. text-align: center;
  85. font-size: 0.875rem;
  86. &.ua {
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. white-space: nowrap;
  90. }
  91. }
  92. }
  93. // Mobile
  94. dl {
  95. dt {
  96. font-size: 1rem;
  97. display: flex;
  98. align-items: center;
  99. gap: 0.5rem;
  100. }
  101. dd {
  102. ul {
  103. display: flex;
  104. flex-direction: row;
  105. flex-wrap: nowrap;
  106. justify-content: start;
  107. padding-top: 0.4rem;
  108. column-gap: 1rem;
  109. li {
  110. font-size: 0.813rem;
  111. color: var(--text-muted);
  112. &.ua {
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. white-space: nowrap;
  116. flex: 1;
  117. min-width: 0;
  118. }
  119. }
  120. }
  121. }
  122. }
  123. @media (max-width: 1024px) {
  124. ol {
  125. display: none;
  126. }
  127. dl {
  128. display: block;
  129. }
  130. }
  131. }
  132. > .empty {
  133. text-align: center;
  134. padding: 2.5rem;
  135. color: var(--text-muted);
  136. }
  137. }
  138. .badge-success {
  139. display: inline-block;
  140. padding: 0.125rem 0.5rem;
  141. border-radius: 0.25rem;
  142. font-size: 0.75rem;
  143. font-weight: 600;
  144. color: var(--color-success);
  145. background-color: #dcfce7;
  146. }
  147. .badge-fail {
  148. display: inline-block;
  149. padding: 0.125rem 0.5rem;
  150. border-radius: 0.25rem;
  151. font-size: 0.75rem;
  152. font-weight: 600;
  153. color: var(--color-danger);
  154. background-color: #fee2e2;
  155. }
  156. }
  157. }