個人的に好きなデザインにCSSを調整していまして、もし同じものを使いたいという方がいらっしゃったときのための共有用の記事です
h2
/* 見出し2 設定 */
.article h2{
position: relative;
margin: 0 0 1.5em;
padding: 0.8em 0 0.8em 1.5em;
background: none;
color:black;
border: 1px solid black;
font-weight: bold;
}
.article h2:before{
content: "";
position: absolute;
background: #3880ff;
top: .5em;
left: .5em;
height: calc(100% - 1em);
width: 5px;
}
h3
/* 見出し3 設定 */
.article h3 {
position: relative;
padding: 1rem 2rem;
border-bottom: 3px solid #3880ff;
}
.article h3:before {
position: absolute;
bottom: -3px;
left: 0;
width: 20%;
height: 3px;
content: '';
background: black;
}
h4
/* 見出し4 設定 */
.article h4 {
position: relative;
background: none;
padding: 0rem;
text-align: center;
}
.article h4:before {
position: absolute;
bottom: -10px;
left: calc(50% - 30px);
width: 60px;
height: 1px;
content: '';
padding-bottom: 20px
border-radius: 3px;
background: black;
}
コメント