satkit 0.16.2

Satellite Toolkit
Documentation
/* Apply JetBrains Mono as the monospace font (loaded via mkdocs.yml) */
:root {
    --md-code-font: "JetBrains Mono", SFMono-Regular, Consolas, monospace;
}

/* "Deep Space" palette — light mode */
[data-md-color-scheme="default"] {
    --md-primary-fg-color: #1a2744;
    --md-primary-fg-color--light: #2d3f66;
    --md-primary-fg-color--dark: #0f1a33;
    --md-accent-fg-color: #0891b2;
    --md-default-bg-color: #fafbfc;
    --md-default-fg-color--light: #475569;
    --md-typeset-a-color: #0891b2;
}

/* Cool code block backgrounds — light mode */
[data-md-color-scheme="default"] .highlight,
[data-md-color-scheme="default"] .md-typeset code {
    background-color: #f1f5f9;
}

/* Admonition accent — light mode */
[data-md-color-scheme="default"] .md-typeset .admonition,
[data-md-color-scheme="default"] .md-typeset details {
    border-color: #0891b2;
}

/* "Deep Space" palette — dark mode */
[data-md-color-scheme="slate"] {
    --md-primary-fg-color: #0f1a33;
    --md-primary-fg-color--light: #1e2d4d;
    --md-primary-fg-color--dark: #0a1226;
    --md-accent-fg-color: #22d3ee;
    --md-default-bg-color: #0f1419;
    --md-default-fg-color: #e2e8f0;
    --md-default-fg-color--light: #94a3b8;
    --md-typeset-a-color: #22d3ee;
}

/* Cool code block backgrounds — dark mode */
[data-md-color-scheme="slate"] .highlight,
[data-md-color-scheme="slate"] .md-typeset code {
    background-color: #1a222e;
}

/* Sidebar styling */
[data-md-color-scheme="default"] .md-sidebar {
    border-right: 1px solid #e2e8f0;
}
[data-md-color-scheme="slate"] .md-sidebar {
    border-right: 1px solid #1e293b;
}

/* Widen the main content area */
.md-grid {
    max-width: 1800px;
}

/* Let the content column use the full grid width */
.md-content__inner {
    max-width: 100%;
}

/* Constrain notebook cell outputs to the content width */
.jp-OutputArea-output,
.jp-RenderedHTMLCommon,
.cell_output {
    max-width: 100%;
    overflow-x: auto;
}

/* Constrain HTML tables inside notebook outputs */
.jp-RenderedHTMLCommon table,
.cell_output table {
    max-width: 100%;
    width: auto;
}

/* Constrain large embedded figures */
.jp-OutputArea-output > div,
.cell_output > div {
    max-width: 100%;
    overflow-x: auto;
}

/* Plotly figures: scale to fit container */
.plotly-graph-div {
    max-width: 100% !important;
    height: auto !important;
}

/* Images inside notebook outputs */
.jp-RenderedHTMLCommon img,
.cell_output img {
    max-width: 100%;
    height: auto;
}