forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
45 lines (40 loc) · 1.52 KB
/
custom.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #307bf3;
--ifm-color-primary-dark: #0d5ddf;
--ifm-color-primary-darker: #0d5ddf;
--ifm-color-primary-darkest: #0944a1;
--ifm-color-primary-light: #307bf3;
--ifm-color-primary-lighter: #307bf3;
--ifm-color-primary-lightest: #307bf3;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-color-info-dark: #307bf3;
--ifm-color-info-contrast-background: #0944a105;
--ifm-color-info-contrast-foreground: rgba(0, 0, 0, 0.85);
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"]:root {
--ifm-color-primary: #307bf3;
--ifm-color-primary-dark: #0d5ddf;
--ifm-color-primary-darker: #0d5ddf;
--ifm-color-primary-darkest: #0944a1;
--ifm-color-primary-light: #307bf3;
--ifm-color-primary-lighter: #307bf3;
--ifm-color-primary-lightest: #307bf3;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
/*Colors for collapsible info items (used in FAQ page)*/
--ifm-color-info-dark: #307bf3;
--ifm-color-info-contrast-background: #0944a110;
--ifm-color-info-contrast-foreground: rgba(255, 255, 255, 0.95);
}
/* In collapsible info items, this prevents the summary heading to move*/
details > summary > h3 {
display: inline-block;
margin-bottom: 0;
}