add list page and multiples optis
All checks were successful
Deploy Sokko G / deploy (push) Successful in 7s

This commit is contained in:
Shinuwa 2026-07-24 16:14:14 +02:00
parent d9d22683dc
commit 959fa42454
30 changed files with 1015 additions and 45 deletions

View file

@ -319,7 +319,7 @@ span {
}
.about-story-item > div > p {
max-width: 78ch;
max-width: 108ch;
margin: 0;
color: var(--color-text-secondary);
line-height: 1.62;
@ -331,6 +331,70 @@ span {
padding: var(--space-6);
}
.about-contribute-section {
display: grid;
grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
gap: var(--space-6);
scroll-margin-top: var(--space-6);
padding: var(--space-6);
}
.about-contribute-content {
display: grid;
gap: var(--space-4);
}
.about-contribute-content > p {
max-width: 112ch;
margin: 0;
color: var(--color-text-secondary);
line-height: 1.62;
}
.about-contribute-content pre,
.about-prompt-box {
margin: 0;
border: 1px solid rgba(165, 180, 252, 0.12);
border-radius: var(--radius-md);
background: rgba(5, 7, 17, 0.28);
}
.about-contribute-content pre {
overflow: auto;
padding: var(--space-4);
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.about-contribute-content code {
color: var(--color-text-primary);
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
font-size: var(--font-size-sm);
line-height: 1.55;
white-space: inherit;
}
.about-prompt-box {
padding: var(--space-4);
}
.about-prompt-box h3 {
margin: 0 0 8px;
color: var(--color-accent-gold);
font-size: var(--font-size-md);
}
.about-prompt-box p {
margin: 0 0 var(--space-3);
color: var(--color-text-secondary);
line-height: 1.58;
}
.about-prompt-box pre {
border-color: rgba(246, 196, 83, 0.16);
background: rgba(5, 7, 17, 0.34);
}
.about-tools-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));