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>
39 lines
783 B
CSS
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;
|
|
}
|