2
0

extra.css 501 B

1234567891011121314151617181920212223242526272829
  1. /* Images */
  2. img {
  3. display: block;
  4. margin-left: auto;
  5. margin-right: auto;
  6. }
  7. /* Tables */
  8. table {
  9. margin-bottom: 24px;
  10. width: 100%;
  11. }
  12. th {
  13. padding: 6px;
  14. font-weight: bold;
  15. }
  16. td {
  17. padding: 6px;
  18. }
  19. /* Remove table header coloring. */
  20. .md-typeset table:not([class]) th {
  21. color: unset !important;
  22. background-color: unset !important;
  23. }
  24. thead tr {
  25. /* Colorize table headers. */
  26. background-color: var(--md-code-bg-color);
  27. color: var(--md-code-fg-color);
  28. }