added blog post 2026/0208

This commit is contained in:
2026-02-08 17:45:30 +01:00
parent d9145cbed9
commit fd40399d8d
4 changed files with 47 additions and 8 deletions

View File

@@ -350,26 +350,22 @@
/* #region Lists (ul and LinkList) */
.list, ul {
display: flex;
flex-direction: column;
padding: 0;
display: table;
}
.list a, li {
width: 100%;
/* transition: color 0.1s ease-in-out; */
margin: 0;
padding: 0px 0;
list-style-type: none;
display: table-row;
}
.list a::before, li::before {
content: "";
font-family: var(--font-mono);
font-weight: bold;
color: var(--color-highlight);
margin: 0 4px 0 12px;
}
li::before {
display: table-cell;
padding-left: 12px;
padding-right: 8px;
}
.list a:hover::before {