記事中の「見出し」や「小見出し」を見やすくするCSSの変更
記事本文に「見出し」「小見出し」「準見出し」を使って章をわけると、白黒だけですとメリハリがないのでメリハリをつけます。
装飾はCSSを追加するだけ
追加するCSSコード:
.post-body h2 {
position: relative;
background: #f3f3f3;
background: #1e73be;
color: #1a1a1a;
color: #ffffff;
font-size: 20px;
line-height: 27px;
margin-bottom: 20px;
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
}
.post-body h2:after {
content: '';
position: absolute;
border-top: 10px solid #1e73be;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
bottom: -10px;
left: 30px;
border-radius: 2px;
}
.post-body h2:before {
content: '';
position: absolute;
border-top: 10px solid #1e73be;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
bottom: -10px;
left: 30px;
}
.post-body h3 {
font-size: 20px;
margin-bottom: 20px;
margin-top: 10px;
padding-top: 15px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
color: #1a1a1a;
line-height: 27px;
background-repeat: no-repeat;
background-position: left center;
margin-left: 0px;
border-bottom: 1px #999999 dotted;
}
.post-body h4 {
padding: 10px;
margin-bottom: 10px;
background-color: #f3f3f3;
}
見出しの背景色はブルー(#1e73be)にしていますので好きなカラーに変更してくださいね。
トップページのタイトルが装飾されちゃった
トップページのタイトルが装飾された場合には、タイトル部分は装飾しないように変更します。
トップページにアイコン・タイトル・抜粋を表示するように変更している場合はCSSで何もしないように設定しましょう。
.topIndexTitle h3 {
color: #333333;
padding-top: 0px !important;
padding-bottom: 0px !important;
border-bottom: none !important;
border: none;
}
チェックしてみましょう
見出しは「吹き出し」みたいにして文字色は白にしてみました。
ちょっとだけカラフル