cleaned up

This commit is contained in:
2026-02-06 09:30:59 +01:00
parent 197537e0a5
commit e23524b6bd
78 changed files with 8971 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/* Fixed list styling for system cards */
.what-it-does ul,
.result ul {
list-style: none;
padding: 0;
}
.what-it-does li,
.result li {
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 8px;
padding-left: 20px;
position: relative;
}
.what-it-does li::before {
content: '→';
position: absolute;
left: 0;
color: var(--primary-mid);
}
.result li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-green);
font-weight: bold;
}