custom.css 920 B

1234567891011121314151617181920212223242526272829303132
  1. /* stylelint-disable docusaurus/copyright-header */
  2. /**
  3. * Any CSS included here will be global. The classic template
  4. * bundles Infima by default. Infima is a CSS framework designed to
  5. * work well for content-centric websites.
  6. */
  7. /* You can override the default Infima variables here. */
  8. :root {
  9. --ifm-color-primary: #25c2a0;
  10. --ifm-color-primary-dark: rgb(33, 175, 144);
  11. --ifm-color-primary-darker: rgb(31, 165, 136);
  12. --ifm-color-primary-darkest: rgb(26, 136, 112);
  13. --ifm-color-primary-light: rgb(70, 203, 174);
  14. --ifm-color-primary-lighter: rgb(102, 212, 189);
  15. --ifm-color-primary-lightest: rgb(146, 224, 208);
  16. --ifm-code-font-size: 95%;
  17. }
  18. .docusaurus-highlight-code-line {
  19. background-color: rgb(72, 77, 91);
  20. display: block;
  21. margin: 0 calc(-1 * var(--ifm-pre-padding));
  22. padding: 0 var(--ifm-pre-padding);
  23. }
  24. .moon::before {
  25. content: '\1F31C';
  26. }
  27. .sun::before {
  28. content: '\1F31E';
  29. }