Checkpoint draft
This commit is contained in:
parent
63ca0df679
commit
1553ec320b
7 changed files with 228 additions and 2 deletions
|
@ -167,6 +167,66 @@ blockquote {
|
|||
padding: var(--box-padding-vert) var(--box-padding-horz);
|
||||
}
|
||||
|
||||
.md-table {
|
||||
/* width: 90%; */
|
||||
min-width: 60%;
|
||||
max-width: 90%;
|
||||
display: block;
|
||||
padding: var(--box-margin-vert) var(--box-margin-horz);
|
||||
gap: var(--box-gap);
|
||||
border-radius: var(--box-radius);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.md-table-title {
|
||||
padding: var(--box-margin-vert) var(--box-padding-horz);
|
||||
border-radius: var(--box-radius);
|
||||
font-weight: 800;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
table {
|
||||
table-layout: auto;
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border-left: 0.1rem dotted;
|
||||
}
|
||||
|
||||
table th, table td {
|
||||
padding: 0.5rem 0.5rem;
|
||||
}
|
||||
|
||||
th {
|
||||
border-top: 0.2rem solid;
|
||||
border-bottom: 0.2rem solid;
|
||||
|
||||
}
|
||||
|
||||
thead tr th:first-child {
|
||||
border-left: 0.2rem solid;
|
||||
}
|
||||
thead tr th:last-child {
|
||||
border-right: 0.2rem solid;
|
||||
}
|
||||
|
||||
tbody tr td:first-child {
|
||||
border-left: 0.1rem dotted;
|
||||
}
|
||||
|
||||
tbody tr td:last-child {
|
||||
border-right: 0.1rem dotted;
|
||||
}
|
||||
|
||||
tbody tr:last-child td {
|
||||
border-bottom: 0.1rem dotted;
|
||||
}
|
||||
|
||||
/* Style the tags blurbs and page */
|
||||
.tags {
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue