_stats.scss 450 B

1234567891011121314151617181920212223242526272829303132
  1. @use "variables";
  2. /*=== STATISTICS */
  3. /*===============*/
  4. .stat {
  5. margin: 10px 0 20px;
  6. }
  7. .stat th,
  8. .stat td,
  9. .stat tr {
  10. border: none;
  11. }
  12. .stat > table td,
  13. .stat > table th {
  14. border-bottom: 1px solid variables.$grey-medium-light;
  15. }
  16. .stat > .horizontal-list {
  17. margin: 0 0 5px;
  18. }
  19. .stat > .horizontal-list .item {
  20. overflow: hidden;
  21. white-space: nowrap;
  22. text-overflow: ellipsis;
  23. }
  24. .stat > .horizontal-list .item:first-child {
  25. width: 270px;
  26. }