You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1004 B

  1. .account__header__fields {
  2. $meta-table-border: lighten($ui-base-color, 8%);
  3. padding: 0;
  4. margin: 15px -15px -15px -15px;
  5. border: 0 none;
  6. border-top: 1px solid $meta-table-border;
  7. border-bottom: 1px solid $meta-table-border;
  8. font-size: 14px;
  9. line-height: 20px;
  10. dl {
  11. display: flex;
  12. border-bottom: 1px solid $meta-table-border;
  13. }
  14. dt,
  15. dd {
  16. box-sizing: border-box;
  17. padding: 14px;
  18. text-align: center;
  19. max-height: 48px;
  20. overflow: hidden;
  21. white-space: nowrap;
  22. text-overflow: ellipsis;
  23. }
  24. dt {
  25. padding-left: 15px;
  26. font-weight: 500;
  27. text-align: center;
  28. width: 120px;
  29. flex: 0 0 auto;
  30. color: $secondary-text-color;
  31. background: darken($ui-base-color, 8%);
  32. }
  33. dd {
  34. flex: 1 1 auto;
  35. color: $darker-text-color;
  36. }
  37. a {
  38. color: $highlight-text-color;
  39. text-decoration: none;
  40. &:hover,
  41. &:focus,
  42. &:active {
  43. text-decoration: underline;
  44. }
  45. }
  46. dl:last-child {
  47. border-bottom: 0;
  48. }
  49. }