Mining/docs/stylesheets/extra.css
snider 313782c161 docs: Add MkDocs documentation site with GitHub Pages deployment
Convert documentation to MkDocs with Material theme for GitHub Pages hosting.
Includes comprehensive guides for API, CLI, desktop app, and development.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 00:25:26 +00:00

39 lines
783 B
CSS

/* Custom styles for Mining documentation */
:root {
--md-primary-fg-color: #673ab7;
--md-primary-fg-color--light: #9575cd;
--md-primary-fg-color--dark: #512da8;
--md-accent-fg-color: #ab47bc;
}
/* Custom code block styling */
.highlight {
border-radius: 0.2rem;
}
/* Enhanced table styling */
table {
border-radius: 0.2rem;
overflow: hidden;
}
/* Custom admonition colors for mining-specific notes */
.md-typeset .admonition.mining-tip {
border-color: #ab47bc;
}
.md-typeset .admonition.mining-tip > .admonition-title {
background-color: rgba(171, 71, 188, 0.1);
border-color: #ab47bc;
}
/* Improved code inline styling */
code {
border-radius: 0.2rem;
}
/* Better spacing for navigation */
.md-nav__item--nested > .md-nav__link {
font-weight: 500;
}