/
spirzen
/
it-knowledge-base
Обзор
Документация
Войти
/
spirzen
/
it-knowledge-base
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
Mobile
src/components/GraphRepresentationPlay.module.css
92 строки
2 KB
Spirzen
Components pack 2
23 май 2026, 03:42
23 май 2026, 03:42
b7f65e4
Код
Авторство
О чём код?
.layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 0.65rem 0; } @media (max-width: 768px) { .layout { grid-template-columns: 1fr; } } .svg { width: 100%; height: auto; border: 1px solid var(--ifm-color-emphasis-300); border-radius: 8px; background: var(--ifm-background-surface-color); } .edge { stroke: var(--ifm-color-emphasis-500); stroke-width: 2; fill: none; } .node { fill: var(--ifm-background-color); stroke: var(--ifm-color-emphasis-400); stroke-width: 2; } .nodeVisited { fill: color-mix(in srgb, var(--ifm-color-primary) 25%, var(--ifm-background-color)); stroke: var(--ifm-color-primary); } .nodeLabel { font-size: 11px; fill: var(--ifm-font-color-base); pointer-events: none; } .panel { display: flex; flex-direction: column; gap: 0.65rem; } .struct { margin: 0; padding: 0.6rem; font-size: 0.72rem; border-radius: 6px; background: var(--ifm-code-background); } .matrix { width: 100%; font-size: 0.72rem; border-collapse: collapse; } .matrix th, .matrix td { border: 1px solid var(--ifm-color-emphasis-300); padding: 0.2rem 0.35rem; text-align: center; } .cellOn { background: color-mix(in srgb, var(--ifm-color-primary) 20%, transparent); font-weight: 700; } .bfs { padding: 0.5rem; border-radius: 8px; border: 1px dashed var(--ifm-color-emphasis-400); } .order { margin: 0.25rem 0 0.5rem; font-size: 0.8rem; font-family: var(--ifm-font-family-monospace); } .controls { display: flex; gap: 0.4rem; }