Files
cs249r_book/shared/styles/partials/_blockquotes.scss
Vijay Janapa Reddi 4b840ff957 refactor(site): shared styles system and fix subscribe modal for subsites
- Create shared/ directory with centralized SCSS partials and site-head.html
  so site subsites (about, community, newsletter) no longer duplicate
  inline header config or reference book-only styles
- Fix subscribe modal: change script src from broken relative path
  (../../book/quarto/assets/scripts/subscribe-modal.js) to absolute URL
  (https://mlsysbook.ai/vol1/assets/scripts/subscribe-modal.js) which
  the rewrite-dev-urls.sh script converts for dev preview automatically
2026-03-21 12:50:25 -04:00

20 lines
456 B
SCSS

// =============================================================================
// BLOCKQUOTE STYLES
// =============================================================================
// Blockquote styling
blockquote {
margin: 30px 0;
padding: 20px 25px;
border-left: 4px solid #6c757d;
background-color: #f8f9fa;
font-style: italic;
border-radius: 0 8px 8px 0;
footer {
margin-top: 10px;
font-size: 0.9em;
color: #6c757d;
}
}