Compare commits

..

No commits in common. "f8b15f0ff48af210a9f0db660b3bca95a7950ddf" and "3da2c28b13971b301e6e944efd5735ea3d4fdd09" have entirely different histories.

3 changed files with 16 additions and 16 deletions

View File

@ -192,64 +192,64 @@ mark {
/* ===== Tables ===== */ /* ===== Tables ===== */
table, .faux-table, td, .faux-td { table, .table, td, .td {
color: var(--theme-text-body); color: var(--theme-text-body);
font-family: var(--font-body); font-family: var(--font-body);
} }
table, .faux-table { table, .table {
display: table; display: table;
margin-block: 2rem; margin-block: 2rem;
border-collapse: collapse; border-collapse: collapse;
} }
table, th, td, table, th, td,
.faux-table, .faux-th, .faux-td { .table, .th, .td {
font-size: 1rem; font-size: 1rem;
line-height: 1.75; line-height: 1.75;
} }
thead, .faux-thead { thead, .thead {
display: table-header-group; display: table-header-group;
} }
tbody, .faux-tbody { tbody, .tbody {
display: table-row-group; display: table-row-group;
} }
tbody tr, tbody tr,
.faux-tbody .faux-tr { .tbody .tr {
border-top: 1px var(--theme-line) solid; border-top: 1px var(--theme-line) solid;
} }
tr, .faux-tr { tr, .tr {
display: table-row; display: table-row;
} }
th, .faux-th { th, .th {
text-align: center; text-align: center;
font-weight: 700; font-weight: 700;
color: var(--theme-text-heading); color: var(--theme-text-heading);
} }
th, .faux-th, th, .th,
td, .faux-td { td, .td {
padding-block: 0.5rem; padding-block: 0.5rem;
padding-inline: 1rem; padding-inline: 1rem;
display: table-cell; display: table-cell;
} }
td, .faux-td { td, .td {
display: table-cell; display: table-cell;
font-weight: 300; font-weight: 300;
vertical-align: top; vertical-align: top;
} }
:is(td, .faux-td):not(:last-of-type) { :is(td, .td):not(:last-of-type) {
border-inline-end: 0.1rem solid var(--theme-line); border-inline-end: 0.1rem solid var(--theme-line);
} }
:is(table, .faux-table) :is(input, select) { :is(table, .table) :is(input, select) {
margin-block: 0; margin-block: 0;
} }

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@doc-utils/docs2website", "name": "@doc-utils/docs2website",
"version": "0.1.9", "version": "0.1.8",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@doc-utils/docs2website", "name": "@doc-utils/docs2website",
"version": "0.1.9", "version": "0.1.8",
"dependencies": { "dependencies": {
"@doc-utils/color-themes": "^0.2.0", "@doc-utils/color-themes": "^0.2.0",
"@doc-utils/jsonschema2markdown": "^0.1.1", "@doc-utils/jsonschema2markdown": "^0.1.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@doc-utils/docs2website", "name": "@doc-utils/docs2website",
"version": "0.1.9", "version": "0.1.8",
"publishConfig": { "publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/doc-utils/npm/" "registry": "https://gitea.jbrumond.me/api/packages/doc-utils/npm/"
}, },