2020-04-09 14:43:22 -04:00
|
|
|
/* Images */
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tables */
|
2020-03-26 11:54:58 -04:00
|
|
|
table {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
th {
|
|
|
|
padding: 6px;
|
2021-08-24 07:30:52 -07:00
|
|
|
font-weight: bold;
|
2020-03-26 11:54:58 -04:00
|
|
|
}
|
|
|
|
td {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
2021-08-24 07:30:52 -07:00
|
|
|
/* Remove table header coloring. */
|
|
|
|
.md-typeset table:not([class]) th {
|
|
|
|
color: unset !important;
|
|
|
|
background-color: unset !important;
|
|
|
|
}
|
|
|
|
thead tr {
|
|
|
|
/* Colorize table headers. */
|
|
|
|
background-color: var(--md-code-bg-color);
|
|
|
|
color: var(--md-code-fg-color);
|
|
|
|
}
|