Spaces:
Sleeping
Sleeping
| /* ===================================================== | |
| 印刷用CSS - エンディングノート | |
| ===================================================== */ | |
| @media print { | |
| /* ページ設定 */ | |
| @page { | |
| size: A4 portrait; | |
| margin: 20mm 15mm; | |
| } | |
| /* ヘッダー・サイドバー・印刷不要要素を非表示 */ | |
| .site-header, | |
| .sidebar, | |
| .preview-actions, | |
| .no-print, | |
| .site-footer, | |
| .section-nav-btns, | |
| .export-section { | |
| display: none ; | |
| } | |
| /* 本文リセット */ | |
| body { | |
| background: #fff; | |
| color: #000; | |
| font-size: 11pt; | |
| line-height: 1.7; | |
| } | |
| /* メインコンテンツ全幅 */ | |
| .main-content, | |
| .preview-body { | |
| max-width: 100%; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| /* セクション */ | |
| .preview-section { | |
| page-break-inside: avoid; | |
| margin-bottom: 1.5rem; | |
| } | |
| /* リンクをテキスト表示 */ | |
| a[href]:after { | |
| content: none; | |
| } | |
| /* 印刷時のカード */ | |
| .section-card { box-shadow: none; border: 1px solid #ddd; } | |
| } | |