Skip to content

Commit d17e519

Browse files
committed
docs: add plugin development guide with i18n support
1 parent b5bd3d8 commit d17e519

2 files changed

Lines changed: 432 additions & 0 deletions

File tree

css/style.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,43 @@ nav.scrolled { background: rgba(10, 10, 15, 0.95); }
692692
line-height: 1.7;
693693
}
694694

695+
/* ── Docs Table ──────────────────────── */
696+
.docs-table {
697+
width: 100%;
698+
border-collapse: collapse;
699+
margin: 16px 0;
700+
font-size: 14px;
701+
}
702+
703+
.docs-table thead {
704+
background: var(--bg-card);
705+
}
706+
707+
.docs-table th {
708+
text-align: left;
709+
padding: 12px 16px;
710+
font-weight: 600;
711+
color: var(--text-primary);
712+
border-bottom: 2px solid var(--border);
713+
}
714+
715+
.docs-table td {
716+
padding: 12px 16px;
717+
border-bottom: 1px solid var(--border);
718+
color: var(--text-secondary);
719+
}
720+
721+
.docs-table tbody tr:hover {
722+
background: var(--bg-card-hover);
723+
}
724+
725+
.docs-table code {
726+
background: var(--bg-card);
727+
padding: 2px 6px;
728+
border-radius: 4px;
729+
font-size: 13px;
730+
}
731+
695732
/* ── Footer ────────────────────────────── */
696733
footer {
697734
border-top: 1px solid var(--border);

0 commit comments

Comments
 (0)