Move first col styling to custom and enable it for all tables

This commit is contained in:
peterdesmet 2023-02-03 17:34:44 +01:00
parent 9f65be2ea1
commit a2e2460be2
3 changed files with 9 additions and 12 deletions

View File

@ -5,12 +5,6 @@
# Darwin Core Quick Reference Guide
<style>
.table tr td:first-of-type {
width: 120px;
}
</style>
This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/).
This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/).

9
docs/_sass/_custom.scss Normal file
View File

@ -0,0 +1,9 @@
// Custom styling
.content {
table {
td:first-of-type {
width: 120px; // Label column, long words will still push this wider
}
}
}

View File

@ -1,12 +1,6 @@
# Darwin Core Quick Reference Guide
<style>
.table tr td:first-of-type {
width: 120px;
}
</style>
This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/).
This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/).