generated from dataforgoodfr/d4g-project-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from genai-impact/docs/branding
Branding of the documentation
- Loading branch information
Showing
11 changed files
with
83 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
!!! warning | ||
|
||
This page is under construction. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/*:root {*/ | ||
/* --md-primary-fg-color: #0b3b36;*/ | ||
/* !*--md-primary-fg-color: #0b3b36;*!*/ | ||
/* !*--md-primary-fg-color--light: #ff0000;*!*/ | ||
/* !*--md-primary-fg-color--dark: #ffea00;*!*/ | ||
/* --md-primary-bg-color--light: #0b3b36*/ | ||
/*}*/ | ||
|
||
/* | ||
Dark green: 0b3b36 | ||
Light green: 00bf63 | ||
*/ | ||
|
||
|
||
[data-md-color-scheme="ecologits"] { | ||
--md-primary-fg-color: #0b3b36; | ||
--md-typeset-a-color: #00914b; | ||
--md-accent-fg-color: #00bf63; | ||
} | ||
|
||
[data-md-color-scheme="ecologits"] img[src$="#only-dark"], | ||
[data-md-color-scheme="ecologits"] img[src$="#gh-dark-mode-only"] { | ||
display: none; /* Hide dark images in light mode */ | ||
} | ||
|
||
[data-md-color-scheme="slate"] { | ||
--md-primary-fg-color: #0b3b36; | ||
--md-hue: 200; | ||
--md-default-fg-color: hsla(var(--md-hue), 15%, 95%, 1); | ||
--md-typeset-a-color: #00bf63 !important; | ||
--md-accent-fg-color: #008343; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
document$.subscribe(({ body }) => { | ||
renderMathInElement(body, { | ||
delimiters: [ | ||
{ left: "$$", right: "$$", display: true }, | ||
{ left: "$", right: "$", display: false }, | ||
{ left: "\\(", right: "\\)", display: false }, | ||
{ left: "\\[", right: "\\]", display: true } | ||
], | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters