Files
Websites/Profice WebSite/style/tech-onepager-fixed.css
2026-02-06 09:30:59 +01:00

31 lines
518 B
CSS

/* 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;
}