2024-07-23 08:48:46 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************
|
|
|
|
* COMPONENT: TAXONOMY LIST
|
|
|
|
***************************/
|
|
|
|
|
|
|
|
.taxonomy-list {
|
|
|
|
--spacing: 1ch;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
font-family: var(--font-family-monospace);
|
|
|
|
gap: var(--spacing);
|
|
|
|
list-style-type: none;
|
|
|
|
margin-block: 0;
|
|
|
|
padding-inline-start: 0;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
color: var(--text-color-secondary);
|
2024-08-02 15:47:33 -07:00
|
|
|
content: attr(data-name) " =";
|
2024-07-23 08:48:46 -07:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2024-10-07 21:02:29 -07:00
|
|
|
li {
|
|
|
|
padding-inline-start: 0;
|
|
|
|
}
|
|
|
|
|
2024-07-23 08:48:46 -07:00
|
|
|
li:not(:last-child)::after {
|
|
|
|
color: var(--text-color-secondary);
|
|
|
|
content: ":";
|
|
|
|
margin-inline-start: var(--spacing);
|
|
|
|
}
|
|
|
|
}
|