Files
microsoft--agent-lightning/docs/stylesheets/extra.css
T
wehub-resource-sync 85742ab165
Deploy Documentation / deploy (push) Has been cancelled
CPU Test / Test (Utilities, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (LLM proxy, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Others, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Store, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Utilities, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Weave, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (AgentOps, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (LLM proxy, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Others, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Weave, latest, Python 3.13) (push) Has been cancelled
Dashboard / Chromatic (push) Has been cancelled
CPU Test / Lint - fast (push) Has been cancelled
CPU Test / Lint - next (push) Has been cancelled
CPU Test / Lint - slow (push) Has been cancelled
CPU Test / Lint - JavaScript (push) Has been cancelled
CPU Test / Build documentation (push) Has been cancelled
CPU Test / Test (AgentOps, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (LLM proxy, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Others, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Store, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Weave, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (AgentOps, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Store, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Utilities, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Weave, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (AgentOps, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (LLM proxy, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Others, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Store, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Utilities, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (JavaScript) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:44:17 +08:00

112 lines
2.2 KiB
CSS

.md-grid {
max-width: 88rem;
}
@media screen and (min-width: 100em) {
html {
font-size: 130%;
}
}
@media screen and (min-width: 125em) {
html {
font-size: 135%;
}
}
.md-typeset .admonition {
font-size: 0.72rem;
}
.md-typeset h4 {
font-size: 1.15em;
}
.md-typeset h5, .md-typeset h6 {
font-size: 1em;
}
/* Increase spacing between API references */
.doc-class, .doc-function, .doc-attribute {
padding-bottom: 2em;
margin-bottom: 3em;
border-bottom: 1px solid #77777777;
}
.doc-class .doc-function:not(:last-child), .doc-class .doc-attribute:not(:last-child) {
padding-bottom: 0;
margin-bottom: 2.5em;
border-bottom: none;
}
.doc-class .doc-function:last-child, .doc-class .doc-attribute:last-child {
padding-bottom: 0;
margin-bottom: 0;
border-bottom: none;
}
[data-md-color-primary="agl"] {
--md-primary-fg-color: #c45259;
--md-primary-fg-color--light: #e8b4b7;
--md-primary-fg-color--dark: #9a3038;
--md-hue: 356;
}
[data-md-color-accent="agl"] {
--md-accent-fg-color: #f69047;
--md-accent-fg-color--light: #fcc59e;
--md-accent-fg-color--dark: #da6005;
}
[data-md-color-scheme="slate"][data-md-color-primary="agl"] {
--md-default-fg-color: hsla(var(--md-hue), 15%, 90%, 0.88);
--md-default-bg-color: hsla(var(--md-hue), 6%, 4%, 1);
--md-code-bg-color: hsla(var(--md-hue), 5%, 20%, 0.5);
}
/* Documentation version warning banner */
.version-warning {
background-color: #FFD15D18;
padding: 1em;
font-weight: 500;
position: relative;
z-index: 1000;
border: 2px solid #FFD15D;
border-radius: 0.25em;
margin-bottom: 2em;
}
/* To center images */
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Charts */
canvas[data-chart] {
width: 100%;
display: block;
}
/* Grid behavior */
.md-typeset .grid {
grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
}
/* Make cards fill equal height and push footer link to bottom */
.md-typeset .grid.cards > ul > li {
display: flex;
flex-direction: column;
gap: 0;
}
.md-typeset .grid.cards > ul > li > hr {
margin: 0.5em 0;
}
.md-typeset .grid.cards > ul > li > :last-child {
margin-top: auto; /* pushes the last element (Browse source) to bottom */
padding-top: 0.5em;
}