-
-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathcustom.css
More file actions
42 lines (37 loc) · 1.08 KB
/
custom.css
File metadata and controls
42 lines (37 loc) · 1.08 KB
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
/**
* 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: #0195a5;
--ifm-color-primary-dark: rgb(2, 117, 129);
--ifm-color-primary-darker: rgb(2, 94, 104);
--ifm-color-primary-darkest: rgb(1, 61, 68);
--ifm-color-primary-light: #0299aa;
--ifm-color-primary-lighter: #03b5c9;
--ifm-color-primary-lightest: #04d4eb;
--ifm-code-font-size: 95%;
/* Navbar*/
--ifm-navbar-background-color: rgb(51, 54, 59);
--ifm-navbar-link-color: white;
}
.navbar__sidebar__items .menu__list-item .menu__link {
color: white;
}
.navbar__toggle {
color: white;
}
.contents .contents__link {
color: var(--ifm-font-base-color);
}
a:hover {
text-decoration: underline dotted;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}