mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-07 19:52:44 +08:00
* Replace docs by mkdocs-material * Fix markdown * Fix verions in gh-pages workflow * remove whitespaces * add semver * Add build docs check on python-ci * Fix command in index cli * Spellcheck * Spellcheck * remove docsite paths * clear outputs from notebook * remove dependabot npm for docsite * remove more docsite left overs * execute notebooks * Update notebooks * update poetry lock * Remove notebook build from ci * Revert dep update * Navigation tabs * Fix stylesheet * add kwds to dictionary * Turn on notebook execution * Update gitignore * Add MSR Blog posts * spellcheck * Accessibility Changes --------- Co-authored-by: Alonso Guevara <alonsog@microsoft.com>
25 lines
583 B
CSS
25 lines
583 B
CSS
[data-md-color-scheme="default"] {
|
|
--md-primary-fg-color: #3c4cab;
|
|
--md-code-hl-color: #3772d9;
|
|
--md-code-hl-comment-color: #6b6b6b;
|
|
--md-code-hl-operator-color: #6b6b6b;
|
|
}
|
|
|
|
[data-md-color-scheme="slate"] {
|
|
--md-primary-fg-color: #364499;
|
|
--md-code-hl-color: #246be5;
|
|
--md-code-hl-constant-color: #9a89ed;
|
|
--md-code-hl-number-color: #f16e5f;
|
|
}
|
|
|
|
.md-tabs__item--active {
|
|
background-color: var(--md-primary-bg-color);
|
|
}
|
|
|
|
.md-tabs__item--active .md-tabs__link {
|
|
color: var(--md-code-hl-color);
|
|
}
|
|
|
|
.md-typeset a {
|
|
text-decoration: underline;
|
|
} |