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.

53 lines
869 B

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