ending-note / static /css /print.css
yukiputi's picture
Upload 12 files
f0c38e6 verified
/* =====================================================
印刷用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 !important;
}
/* 本文リセット */
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; }
}