mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-07 18:18:42 -05:00
- 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
20 lines
456 B
SCSS
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;
|
|
}
|
|
}
|