画像ブロック|画像リンク(四角ライン)

138 views

構造詳細

クラス名
bf-img-link--square-border
CSS
.bf-img-link--square-border {
    outline: 2px solid #fff;
    outline-offset: -1.5rem;
    position: relative;
    display: flex;
    transition: outline-offset 0.3s ease-out;
}
.bf-img-link--square-border:hover {
    outline-offset: 0;
}
.bf-img-link--square-border figcaption {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgb(51 51 51 / 0.3);
    position: absolute;
    margin: 0;
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}
.bf-img-link--square-border a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

使い方

導入方法

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

ー動画(予定)ー

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

クラス名の付け方

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

CSSの書き方

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