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.
 
 
 
 

54 lines
1.2 KiB

  1. @charset "UTF-8";
  2. table {
  3. border-collapse: collapse;
  4. width: 100%;
  5. max-width: 100%;
  6. margin: 1rem 0;
  7. background-color: white;
  8. line-height: 1.2;
  9. font-size: 18px;
  10. th, td {
  11. height: 50px;
  12. padding: 6px 15px 6px 15px;
  13. border-bottom: 1px solid $color-white;
  14. border-right: 1px solid $color-white;
  15. vertical-align: middle;
  16. border-top: 1px solid $color-primary-light-03;
  17. border-top: 1px solid var(--theme-color-primary-dimmed-03, $color-primary-light-03);
  18. border-bottom: 1px solid $color-primary-light-03;
  19. border-bottom: 1px solid var(--theme-color-primary-dimmed-03, $color-primary-light-03);
  20. &:last-child {
  21. border-right: 0;
  22. }
  23. p, .text {
  24. margin: 5px 0;
  25. }
  26. }
  27. th {
  28. background-color: $color-secondary-light;
  29. background-color: var(--theme-color-secondary-dimmed, $color-secondary-light);
  30. }
  31. tr:nth-child(even) td {
  32. background-color: lighten($color-primary-light-04, 4);
  33. background-color: var(--theme-color-primary-dimmed-04, lighten($color-primary-light-04, 4));
  34. }
  35. }
  36. .responsive-table {
  37. @media(max-width: 567px) {
  38. margin: 1rem -20px;
  39. padding: 0 20px;
  40. overflow: auto;
  41. table {
  42. margin: 0;
  43. border-right: 20px solid white;
  44. }
  45. }
  46. }