AddQuickTag

【吹き出し】左アイコン吹き出し03-think


こちらに文章を入力。色変更もできます。

下記Beyondコード

JS head

なし

HTML

<div class="balloon_left_03think">
    <div class="faceicon_left_03think">
        <!--画像の入れ替えは下記URL変更もしくは左に表示されている画像を選択した後に上部の画像ボタンからも入れ替え可能-->
        <img src="https://production.static.squadbeyond.com/uploads/article_photo/photo/631031/65882372-a684-416b-a484-fe55664b6da8.png" draggable="false" class="lazyload" height="50" width="50">
    </div>
    <div class="outline-left_03think">
        <div class="left_03think">
            <p>こちらに文章を入力。色変更もできます。</p>
        </div>
    </div>
</div>

CSS

 .balloon_left_03think {
  width: 100%;
  margin: 1.5em 0;
  overflow: visible;
  display: flex;
  flex-direction: row;
}

 .faceicon_left_03think {
  flex-basis: 55px;
  flex-shrink: 0;
  align-self: flex-end;
}

 .faceicon_left_03think img {
  width: 55px;
  max-width: 55px;
  height: 55px !important;
  object-fit: cover;
  /*アイコン周りの線。線の種類|線の太さ|線の色*/
  border: solid 3px #ffe6d9;
  border-radius: 50%;
  box-sizing: border-box;
}

 .outline-left_03think {
  width: auto;
}

 .left_03think {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 12px;
  /*一番大きい吹き出しの背景色*/
  background-color: #ffe6d9;
  border-radius: 20px;
  margin-left: 50px;
}

 .left_03think::before {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  /*中くらいの真ん中にある吹き出しの背景色*/
  background-color: #ffe6d9;
  left: -29px;
  top: 25%;
  width: 22px;
  height: 22px;
}

 .left_03think::after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  /*一番小さい吹き出しの背景色*/
  background-color: #ffe6d9;
  left: -45px;
  top: 50%;
  width: 12px;
  height: 12px;
}

 .left_03think p {
  margin: 0;
  padding: 0;
  letter-spacing: -0.01em;
}