mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-06-03 08:41:21 -05:00
- 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
16 lines
466 B
CSS
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;
|
|
} |