グループブロック|シンプル(帯リボン)

216 views

タイトルサンプル

テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト

タイトルなし

テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト

構造詳細

クラス名
bf-group-simple--band-ribon
クラス名(タイトル)
bf-group-simple--band-ribon__title
CSS
.bf-group-simple--band-ribon {
    position: relative;
    z-index: 0;
    padding: 1.5rem;
}
.bf-group-simple--band-ribon:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 100%;
    background: inherit;
    content: "";
}
p.bf-group-simple--band-ribon__title {
    position: relative;
    line-height: 2rem;
    margin: 0 -1.5rem 1.5rem;
    padding: 0.25rem 1rem;
    font-weight: 600;
    text-align: center;
}
.bf-group-simple--band-ribon__title:before {
    position: absolute;
    top: 0;
    left: -8px;
    width: 1.5rem;
    height: 100%;
    background: inherit;
    content: "";
    transform: skewX(-20deg);
}
.bf-group-simple--band-ribon__title:after {
    position: absolute;
    top: 100%;
    left: -8px;
    z-index: -1;
    width: 1.5rem;
    height: 30%;
    background: inherit;
    filter: brightness(0.7);
    content: "";
    transform: skewX(52deg);
}

使い方

導入方法

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

ー動画(予定)ー

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

クラス名の付け方

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

CSSの書き方

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

関連記事