custom.css 907 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Any CSS included here will be global. The classic template
  3. * bundles Infima by default. Infima is a CSS framework designed to
  4. * work well for content-centric websites.
  5. */
  6. /* You can override the default Infima variables here. */
  7. :root {
  8. --ifm-color-primary: #4465db;
  9. --ifm-code-font-size: 95%;
  10. --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
  11. --secondary: #171717;
  12. --secondary-dark: #0a0a0a;
  13. --secondary-light: #737373;
  14. }
  15. /* For readability concerns, you should choose a lighter palette in dark mode. */
  16. [data-theme="dark"] {
  17. --ifm-color-primary: #4465db;
  18. --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
  19. --secondary: #737373;
  20. --secondary-dark: #171717;
  21. --secondary-light: #d4d4d4;
  22. }
  23. .footer--dark {
  24. background-image: linear-gradient(
  25. 140deg,
  26. var(--secondary) 20%,
  27. var(--secondary-light) 100%
  28. );
  29. }
  30. .a {
  31. text-decoration: underline;
  32. }