Custom CSS is available as an add-on to the pro plan.

Add CSS files to your repository to apply custom styling across your MDX files.

Example Usage

Add a style.css file to customize UI elements:

#navbar {
  background: "#fffff2";
  padding: 1rem;
}

footer {
  margin-top: 2rem;
}

Common Identifiers

Key UI elements you can style:

  • #topbar-cta-button
  • #navbar
  • #sidebar
  • #content-area
  • #table-of-contents

Use inspect element to find additional element references.

UI elements and styling may change as the platform evolves. Use custom styling with caution.

Was this page helpful?