_style.scss 502 B

123456789101112131415161718192021
  1. table,
  2. .wp-block-table {
  3. width: 100%;
  4. min-width: 240px;
  5. border-collapse: collapse;
  6. th {
  7. @include font-family( map-deep-get($config-heading, "font", "family") );
  8. }
  9. td,
  10. th {
  11. padding: calc( 0.5 * #{map-deep-get($config-global, "spacing", "unit")} );
  12. border: 1px solid;
  13. }
  14. &.is-style-stripes tbody tr:nth-child(odd) {
  15. background-color: #{map-deep-get($config-global, "color", "border", "light")};
  16. color: #{map-deep-get($config-global, "color", "foreground", "default")};
  17. }
  18. }