Files
TinyTorch/book/_static/custom.css
Vijay Janapa Reddi a21a006603 feat: Major book structure and content updates
- Reorganized chapter structure with new numbering system
- Added new chapters: introduction, tokenization, embeddings, profiling, quantization, caching
- Removed obsolete chapters (15-mlops) and consolidated content
- Updated table of contents and navigation structure
- Enhanced visual design with new logos and favicon
- Added comprehensive documentation (FAQ, user manual, command reference, competitions)
- Improved theme design and custom CSS styling
- Added QUICKSTART.md for rapid onboarding
- Updated all chapter cross-references and links
2025-09-27 01:36:16 -04:00

16 lines
466 B
CSS

/* Mermaid diagram styling - remove grey backgrounds ONLY from Mermaid containers */
pre.mermaid {
background: transparent !important;
border: none !important;
margin: 1.5rem auto !important;
text-align: center !important;
padding: 0 !important;
}
/* Ensure Mermaid diagrams are properly centered and clean */
pre.mermaid.align-center {
display: block;
margin-left: auto;
margin-right: auto;
background: transparent !important;
}