netbox/docs/extra.css

34 lines
571 B
CSS
Raw Normal View History

/* Images */
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.md-content img {
background-color: rgba(255, 255, 255, 0.64);
}
/* Tables */
table {
margin-bottom: 24px;
width: 100%;
}
th {
padding: 6px;
2021-08-24 07:30:52 -07:00
font-weight: bold;
}
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);
}