statistics.css 842 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .statistics-module {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: flex-end;
  5. }
  6. .statistics-module > .statistics-table {
  7. width: 100%;
  8. color: #d1d1d1;
  9. border-collapse: collapse;
  10. text-align: center;
  11. }
  12. .statistics-module > .statistics-table,
  13. .statistics-module > .statistics-table tr,
  14. .statistics-module > .statistics-table td,
  15. .statistics-module > .statistics-table th {
  16. border: 1px solid #d1d1d1;
  17. }
  18. .statistics-module > .statistics-pager {
  19. margin: 5px 0;
  20. }
  21. .statistics-module > .statistics-pager > span,
  22. .statistics-module > .statistics-pager > .pager-page-size-selector {
  23. margin-left: 5px;
  24. }
  25. .statistics-module > .statistics-pager > .pager-page {
  26. text-decoration: underline;
  27. cursor: pointer;
  28. }
  29. .statistics-module > .statistics-pager > .pager-page.current {
  30. font-weight: 900;
  31. text-decoration: none;
  32. cursor: default;
  33. }