段落ブロック|ボックス(アイコンシンプル)

38 views

テキスト

テキスト

テキスト

構造詳細

bf-para-icon--simple-alert
bf-para-icon--simple-memo
bf-para-icon--simple-check
p.bf-para-icon--simple-alert {
    background: #eee;
    padding: 1rem 1.5rem 1rem 4rem;
    position: relative;
}
p.bf-para-icon--simple-alert:before,
p.bf-para-icon--simple-alert:after {
    width: 36px;
    height: 36px;
    display: inline-block;
    line-height: 36px;
    position: absolute;
    top: calc(50% - 18px);
    left: 1rem;
}
p.bf-para-icon--simple-alert:before {
    content: "";
    border-radius: 50%;
    background: currentColor;
}
p.bf-para-icon--simple-alert:after {
    content: "\f12a";
    font-family: font awesome\ 5 free;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

p.bf-para-icon--simple-memo {
    background: #eee;
    padding: 1rem 1.5rem 1rem 4rem;
    position: relative;
}
p.bf-para-icon--simple-memo:before,
p.bf-para-icon--simple-memo:after {
    width: 36px;
    height: 36px;
    display: inline-block;
    line-height: 36px;
    position: absolute;
    top: calc(50% - 18px);
    left: 1rem;
}
p.bf-para-icon--simple-memo:before {
    content: "";
    border-radius: 50%;
    background: currentColor;
}
p.bf-para-icon--simple-memo:after {
    content: "\f304";
    font-family: font awesome\ 5 free;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

p.bf-para-icon--simple-check {
    background: #eee;
    padding: 1rem 1.5rem 1rem 4rem;
    position: relative;
}
p.bf-para-icon--simple-check:before,
p.bf-para-icon--simple-check:after {
    width: 36px;
    height: 36px;
    display: inline-block;
    line-height: 36px;
    position: absolute;
    top: calc(50% - 18px);
    left: 1rem;
}
p.bf-para-icon--simple-check:before {
    content: "";
    border-radius: 50%;
    background: currentColor;
}
p.bf-para-icon--simple-check:after {
    content: "\f00c";
    font-family: font awesome\ 5 free;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

使い方

導入方法

  1. コピーボタンをクリック
  2. 投稿画面(エディタ)で右クリックしてプレーンテキストとして貼り付け

ー動画(予定)ー

オリジナルスタイルのルール

クラス名の付け方

  • 原則として使用するクラス名は1つとする
  • クラス名からは役割がわかるものとする
  • クラス名からはデザインのイメージがわかるものとする
  • 接頭語はbf-とする
  • デザインを意味する部分は–で繋ぐ
  • 詳細度は高め(ただしbodyなど広範囲に影響するのはNG)

CSSの書き方

  • 余白の値はできるだけremまたはpx
  • デフォルトカラー(うすめ)は#eee
  • デフォルトカラー(こいめ)は#333
  • colorとbackgroundは色設定から変更できることを頭に入れておく
  • 疑似要素をテキストの後ろにしたい場合は、親にzindex 0、疑似要素にzindex -1にしておく
  • importantは最低限なら使ってもいいと思う

関連記事