-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathcustom.css
More file actions
58 lines (50 loc) · 1.48 KB
/
custom.css
File metadata and controls
58 lines (50 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* 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: #eb0195;
--ifm-color-primary-dark: #d40186;
--ifm-color-primary-darker: #c8017f;
--ifm-color-primary-darkest: #a50168;
--ifm-color-primary-light: #fe06a3;
--ifm-color-primary-lighter: #fe11a7;
--ifm-color-primary-lightest: #fe35b4;
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.1);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
html[data-theme='dark'] .docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.3);
}
.navbar-federation-link {
color: #E91E8C !important;
font-weight: 500 !important;
background: rgba(233, 30, 140, 0.07) !important;
border-radius: 6px;
padding: 4px 10px !important;
}
.navbar-federation-link:hover {
background: rgba(233, 30, 140, 0.13) !important;
}
.navbar__link svg {
position: relative;
top: 1px;
}
/* Version badge pill */
.navbar__items--right .dropdown > .navbar__link {
font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
background: #f4f4f4;
border-radius: 4px;
padding: 3px 8px;
font-size: 0.8rem;
}
html[data-theme='dark'] .navbar__items--right .dropdown > .navbar__link {
background: rgba(255, 255, 255, 0.08);
}