「MediaWiki:Common.css」の版間の差分

編集の要約なし
編集の要約なし
3行目: 3行目:
body {
body {
     font-family: 'Segoe UI', 'Arial', sans-serif; /* ノート風のフォント */
     font-family: 'Segoe UI', 'Arial', sans-serif; /* ノート風のフォント */
     font-size: 16px; /* 読みやすい基本の文字サイズ */
     font-size: 20px; /* 読みやすい基本の文字サイズ */
     line-height: 1.6; /* 行間も広めに設定 */
     line-height: 1.6; /* 行間も広めに設定 */
     background: #fafafa; /* 背景色をソフトな色に設定 */
     background: #fafafa; /* 背景色をソフトな色に設定 */
13行目: 13行目:
     font-family: 'Georgia', 'Times New Roman', serif; /* 見出しにはセリフフォントを使用 */
     font-family: 'Georgia', 'Times New Roman', serif; /* 見出しにはセリフフォントを使用 */
     color: #2a2a2a; /* 見出しの文字色を少し濃く */
     color: #2a2a2a; /* 見出しの文字色を少し濃く */
}
/* 見出しのフォントサイズも適宜調整 */
h1 {
    font-size: 2.5em; /* h1は基本文字サイズの2.5倍 */
}
h2 {
    font-size: 2em; /* h2は基本文字サイズの2倍 */
}
h3 {
    font-size: 1.75em; /* h3は基本文字サイズの1.75倍 */
}
h4 {
    font-size: 1.5em; /* h4は基本文字サイズの1.5倍 */
}
h5 {
    font-size: 1.25em; /* h5は基本文字サイズの1.25倍 */
}
h6 {
    font-size: 1em; /* h6は基本文字サイズと同等 */
}
}