📝 api docs

This commit is contained in:
mi
2025-11-13 14:08:07 +10:00
parent bc2d4aebeb
commit d484835f5b
5 changed files with 207 additions and 3 deletions

View File

@@ -686,6 +686,18 @@ footer {
letter-spacing: var(--letter-spacing-tight);
}
.footer-bottom a.api-link {
color: var(--color-text);
text-decoration: none;
font-size: var(--font-size-md);
text-transform: uppercase;
letter-spacing: var(--letter-spacing-tight);
}
.footer-bottom a.api-link:hover {
text-decoration: underline;
}
/* Compact Footer Mode */
footer.compact-footer {
border-top: none;
@@ -698,6 +710,7 @@ footer.compact-footer .container {
align-items: center;
justify-content: center;
gap: var(--space-md);
flex-wrap: wrap;
}
footer.compact-footer .footer-content {
@@ -705,7 +718,7 @@ footer.compact-footer .footer-content {
align-items: center;
gap: var(--space-md);
margin-bottom: 0;
flex-wrap: nowrap;
flex-wrap: wrap;
}
footer.compact-footer .footer-section {
@@ -745,6 +758,8 @@ footer.compact-footer .footer-bottom {
padding-top: 0;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: var(--space-xs);
}
footer.compact-footer .footer-bottom::before {
@@ -758,6 +773,16 @@ footer.compact-footer .footer-bottom p {
margin: 0;
}
footer.compact-footer .footer-bottom a.api-link {
font-size: var(--font-size-sm);
}
footer.compact-footer .footer-bottom a.api-link::before {
content: '|';
margin: 0 var(--space-sm);
color: var(--color-text-muted);
}
/* Add separator between sections in compact mode */
footer.compact-footer .footer-section:not(:last-child)::after {
content: '|';