Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @gwaybio @d33bs
128 changes: 128 additions & 0 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ html.dark .v2-callout {
}
html.dark .v2-callout p { color: #93c5fd !important; }
html.dark .v2-callout strong { color: #bfdbfe !important; }
html.dark .roadmap-link-callout {
background: #052e16 !important;
border-color: #22c55e !important;
}
html.dark .roadmap-link-callout p { color: #86efac !important; }
html.dark .roadmap-link-callout a { color: #bbf7d0 !important; }
html.dark .problem-card {
background: #1f2937 !important;
border-color: #374151 !important;
Expand Down Expand Up @@ -138,6 +144,128 @@ html.dark .hero-btn-primary { background: #3b82f6 !important; }
html.dark .hero-btn-outline { border-color: #374151 !important; color: #d1d5db !important; }
html.dark .hero-secondary-link { color: #6b7280 !important; border-bottom-color: #374151 !important; }

/* Focused development initiative */
.roadmap-doc {
font-size: 0.95rem;
}

.roadmap-doc table {
display: block;
font-size: 0.86rem;
overflow-x: auto;
width: 100%;
}

.roadmap-doc th {
white-space: nowrap;
}

.roadmap-doc ul {
list-style: disc outside;
margin: 0.75rem 0 1rem;
padding-left: 1.25rem;
}

.roadmap-doc li {
display: list-item;
padding-left: 0.15rem;
}

.roadmap-doc li::marker {
color: #16a34a;
}

.roadmap-doc strong {
color: #111827;
}

html.dark .roadmap-doc strong {
color: #f3f4f6;
}

.roadmap-figure {
margin: 2rem auto 2.25rem;
max-width: min(900px, 100%);
width: 100%;
}

.roadmap-figure img {
border: 1px solid #e5e7eb;
border-radius: 8px;
display: block;
height: auto;
width: 100%;
}

.roadmap-figure figcaption {
color: #6b7280;
font-size: 0.78rem;
line-height: 1.45;
margin-top: 0.65rem;
text-align: left;
}

html.dark .roadmap-figure img {
border-color: #374151;
}

html.dark .roadmap-figure figcaption {
color: #9ca3af;
}

.focused-summary-grid {
display: grid;
gap: 1rem;
}

.focused-summary-grid > div {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 8px;
padding: 1rem 1.1rem;
}

.focused-summary-grid h3 {
font-size: 1rem;
font-weight: 750;
margin: 0.15rem 0 0.5rem;
}

.focused-summary-grid p,
.focused-summary-grid li,
.roadmap-doc td {
color: #4b5563;
line-height: 1.55;
}

.focused-kicker {
color: #16a34a !important;
font-size: 0.72rem !important;
font-weight: 800;
letter-spacing: 0.07em;
margin: 0 !important;
text-transform: uppercase;
}

html.dark .focused-summary-grid > div {
background: #1f2937;
border-color: #374151;
}

html.dark .focused-summary-grid h3 {
color: #f3f4f6;
}

html.dark .focused-summary-grid p,
html.dark .focused-summary-grid li,
html.dark .roadmap-doc td {
color: #d1d5db;
}

html.dark .focused-kicker {
color: #86efac !important;
}

/* Inline code: remove Congo's visible backtick pseudo-elements, style like standard markdown */
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before,
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
Expand Down
2 changes: 1 addition & 1 deletion content/tools/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ description: Production-ready tools for image-based profiling bioinformatics.

The Cytomining ecosystem provides a suite of production-ready tools for every stage of the image-based profiling workflow.

For upcoming capabilities and in-progress projects, see the [Roadmap](https://cytomining.github.io/experimental/), which includes our experimental tools under active development.
For upcoming capabilities and in-progress projects, see the [Roadmap](https://cytomining.github.io/experimental/), which includes our experimental tools under active development. For a focused plan across OME-Arrow, single-cell scale efficiency, and AI-ready workflows, see the [focused development initiative](/roadmap/#focused-development-initiative).
Loading
Loading