-
Trying to change a) link color to blue & b) change the footer background color Here is my extra-color.css: :root { :root > * { And my mkdocs.yml:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You're missing a :root > * {
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
--md-footer-bg-color: hsla(0, 0%, 0%, 0.87);
--md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32);
} |
Beta Was this translation helpful? Give feedback.
-
It works if you follow the customization guide and add the following CSS (just verified it again): :root > * {
--md-typeset-a-color: deeppink;
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
--md-footer-bg-color: deeppink;
--md-footer-bg-color--dark: hotppink;
} |
Beta Was this translation helpful? Give feedback.
-
BTW, Is it possible to add an additional link (for example to JIRA or Xenhub) on the TOP (next to the search bar, and below the repo link) |
Beta Was this translation helpful? Give feedback.
It works if you follow the customization guide and add the following CSS (just verified it again):