style.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. #profile {
  2. max-width: 1024px;
  3. padding: 0 32px 32px 32px;
  4. h1 {
  5. font-size: 22px;
  6. margin-bottom: 10px;
  7. }
  8. table {
  9. border: 1px solid var(--border-strong);
  10. caption {
  11. text-align: left;
  12. font-size: 16px;
  13. margin-bottom: 10px;
  14. }
  15. tbody {
  16. tr {
  17. th, td {
  18. text-align: left;
  19. font-size: 14px;
  20. font-weight: normal;
  21. padding: 8px 9px;
  22. }
  23. th {
  24. background: var(--bg-elevated);
  25. border: 1px solid var(--border-strong);
  26. }
  27. td {
  28. border-bottom: 1px solid var(--border-strong);
  29. a {
  30. height: min-content;
  31. padding: 3px 16px;
  32. }
  33. &:nth-of-type(2) {
  34. text-align: right;
  35. }
  36. }
  37. }
  38. }
  39. }
  40. dl {
  41. dt, dd {
  42. font-size: 14px;
  43. }
  44. dt {
  45. font-weight: bold;
  46. margin-bottom: 7px;
  47. }
  48. dd {
  49. margin-bottom: 2px;
  50. }
  51. }
  52. .profile__sns-logos {
  53. display: inline-flex;
  54. align-items: center;
  55. gap: 8px;
  56. flex-wrap: wrap;
  57. }
  58. .profile__sns-logo {
  59. display: inline-flex;
  60. align-items: center;
  61. justify-content: center;
  62. width: 28px;
  63. height: 28px;
  64. border-radius: 50%;
  65. flex-shrink: 0;
  66. font-size: 14px;
  67. background: var(--bg-subtle);
  68. color: var(--text-muted);
  69. border: 1px solid var(--border-default);
  70. transition: opacity 0.15s, filter 0.15s;
  71. &-text {
  72. font-weight: 700;
  73. font-size: 13px;
  74. }
  75. // 미연동 / 준비중 — 회색 처리
  76. &--inactive,
  77. &--disabled {
  78. filter: grayscale(1);
  79. opacity: 0.45;
  80. }
  81. // 연동됨 (active) — provider 별 컬러
  82. &--connected {
  83. filter: none;
  84. opacity: 1;
  85. }
  86. &--google.profile__sns-logo--connected {
  87. background: #fff;
  88. color: #4285F4;
  89. border-color: #4285F4;
  90. }
  91. &--naver.profile__sns-logo--connected {
  92. background: #03C75A;
  93. color: #fff;
  94. border-color: #03C75A;
  95. }
  96. &--kakao.profile__sns-logo--connected {
  97. background: #FEE500;
  98. color: #3C1E1E;
  99. border-color: #FEE500;
  100. }
  101. }
  102. }