タイトルなし
構造詳細
クラス名
bf-group-simple--icon-thinframe
クラス名(タイトル)
bf-group-simple--icon-thinframe__title
CSS
.bf-group-simple--icon-thinframe {
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 0 1px 1px rgba(0 0 0 / 0.05);
}
p.bf-group-simple--icon-thinframe__title {
position: relative;
margin-bottom: 1rem;
padding: 0 0 0 2.5rem;
font-weight: 600;
}
p.bf-group-simple--icon-thinframe__title:after {
display: inline-block;
position: absolute;
top: calc(50% - 18px);
left: 0;
width: 36px;
height: 36px;
line-height: 36px;
font-family: font awesome\ 5 free;
text-align: center;
content: "\f304";
}
使い方
導入方法
- コピーボタンをクリック
- 投稿画面(エディタ)で右クリックしてプレーンテキストとして貼り付け
ー動画(予定)ー
オリジナルスタイルのルール
クラス名の付け方
- 原則として使用するクラス名は1つとする
- クラス名からは役割がわかるものとする
- クラス名からはデザインのイメージがわかるものとする
- 接頭語はbf-とする
- デザインを意味する部分は–で繋ぐ
- 詳細度は高め(ただしbodyなど広範囲に影響するのはNG)
CSSの書き方
- 余白の値はできるだけremまたはpx
- デフォルトカラー(うすめ)は#eee
- デフォルトカラー(こいめ)は#333
- colorとbackgroundは色設定から変更できることを頭に入れておく
- 疑似要素をテキストの後ろにしたい場合は、親にzindex 0、疑似要素にzindex -1にしておく
- importantは最低限なら使ってもいいと思う