profile.scss 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 회원정보
  2. #accountProfile {
  3. position: relative;
  4. > dl {
  5. margin-bottom: 1.5rem;
  6. dt {
  7. font-size: 15px;
  8. margin-bottom: 10px;
  9. }
  10. dd {
  11. font-size: 13px;
  12. }
  13. }
  14. article {
  15. table {
  16. border: none;
  17. tbody {
  18. tr {
  19. th {
  20. color: #b3b3b3;
  21. hr {
  22. color: #ccc;
  23. margin: 0.6rem 0;
  24. }
  25. }
  26. td {
  27. text-align: left;
  28. color: #f1f1f1;
  29. hr {
  30. color: #ccc;
  31. margin: 0.3rem 0;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }
  38. }