mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
Customize font styling for documentation
This commit is contained in:
parent
8389108653
commit
02187b19bb
1 changed files with 7 additions and 0 deletions
|
@ -4,6 +4,8 @@
|
||||||
* work well for content-centric websites.
|
* work well for content-centric websites.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap');
|
||||||
|
|
||||||
/* You can override the default Infima variables here. */
|
/* You can override the default Infima variables here. */
|
||||||
:root {
|
:root {
|
||||||
--ifm-color-primary: #fcc50b;
|
--ifm-color-primary: #fcc50b;
|
||||||
|
@ -14,6 +16,7 @@
|
||||||
--ifm-color-primary-lighter: #fcc50b;
|
--ifm-color-primary-lighter: #fcc50b;
|
||||||
--ifm-color-primary-lightest: #fcc50b;
|
--ifm-color-primary-lightest: #fcc50b;
|
||||||
--ifm-code-font-size: 95%;
|
--ifm-code-font-size: 95%;
|
||||||
|
--ifm-heading-font-family: 'Source Sans 3', sans-serif;
|
||||||
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,3 +31,7 @@
|
||||||
--ifm-color-primary-lightest: #fcc50b;
|
--ifm-color-primary-lightest: #fcc50b;
|
||||||
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Source Sans 3', sans-serif;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue