style.scss 740 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #profile {
  2. padding: 0 32px 32px 32px;
  3. h1 {
  4. font-size: 22px;
  5. margin-bottom: 10px;
  6. }
  7. table {
  8. border: 1px solid #ccc;
  9. caption {
  10. text-align: left;
  11. font-size: 16px;
  12. margin-bottom: 10px;
  13. }
  14. tbody {
  15. tr {
  16. th, td {
  17. text-align: left;
  18. font-size: 14px;
  19. font-weight: normal;
  20. padding: 8px 9px;
  21. }
  22. th {
  23. background: #f9f9f9;
  24. border: 1px solid #ccc;
  25. }
  26. td {
  27. border-bottom: 1px solid #ccc;
  28. a {
  29. height: min-content;
  30. padding: 3px 16px;
  31. }
  32. &:nth-of-type(2) {
  33. text-align: right;
  34. }
  35. }
  36. }
  37. }
  38. }
  39. dl {
  40. dt, dd {
  41. font-size: 14px;
  42. }
  43. dt {
  44. font-weight: bold;
  45. margin-bottom: 7px;
  46. }
  47. dd {
  48. margin-bottom: 2px;
  49. }
  50. }
  51. }