added new devlog

This commit is contained in:
2025-04-27 19:24:41 +02:00
parent 972efca6af
commit 7155896fff
14 changed files with 123 additions and 27 deletions

View File

@@ -130,6 +130,27 @@
line-height: 1.7rem;
font-weight: 500;
}
.styled-list {
padding: 0;
}
.styled-list li::before {
content: "";
font-weight: 900;
color: var(--color-highlight);
padding-right: 8px;
}
.styled-list li {
display: flex;
padding-left: 0;
margin-top: 4px;
margin-bottom: 4px;
transition: background-color 0.2s ease-in-out;
padding: 2px 12px;
}
.styled-list li a {
display: inline;
}
h1 {
font-size: 3.5rem;
@@ -184,6 +205,18 @@
margin-right: auto;
}
.inline-img-left {
float: left;
max-width: 24%;
margin: 0 24px 24px 0;
}
.inline-img-right {
float: right;
max-width: 24%;
margin: 0 0 24px 24px;
}
a:link {
color: var(--color-link-unvisited);
}