forked from evaera/Cmdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
45 lines (34 loc) · 873 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
:root {
--ifm-font-family-base: Inter, -apple-system, "Helvetica Neue", Roboto,
Helvetica, system-ui, "Nimbus Sans", "Arial Nova", Arial, Segoe UI;
--ifm-navbar-link-hover-color: #9b59b6;
--ifm-link-color: #9b59b6;
--ifm-color-primary: #9b59b6;
}
.footer__copyright a:hover,
code > a:hover {
text-decoration-thickness: 2px !important;
text-decoration: underline;
}
/* Navbar */
.navbar__logo img {
transition: opacity var(--ifm-transition-fast)
var(--ifm-transition-timing-default);
}
.navbar__logo img:hover {
opacity: 75%;
}
/* Footer */
.footer a {
color: var(--ifm-footer-color) !important;
}
.footer a:hover {
text-decoration: underline;
}
.footer__copyright a {
text-decoration: underline;
}
.footer__links {
text-align: center;
}