Written by Anonymous
/************************************
チャット風吹き出し
************************************/
/* 全体のスタイル */
.kaiwa {
margin-bottom: 40px;
}
/* 左画像 */
.kaiwa-img-left {
margin: 0;
float: left;
width: 100px;
height: 100px;
}
/* 右画像 */
.kaiwa-img-right {
margin: 0;
float: right;
width: 100px;
height: 100px;
}
.kaiwa figure img {
width: 100%;
height: 100%;
border: 2px solid #d7ebfe;
border-radius: 50%;
margin: 0;
}
/* 画像の下のテキスト */
.kaiwa-img-description {
padding: 5px 0 0;
font-size: 10px;
text-align: center;
line-height: 0.5em;
}
/* 左からの吹き出しテキスト */
.kaiwa-text-right {
position: relative;
margin-left: 120px;
padding: 10px;
background-color: #fafdff;
border: 2px solid #d7ebfe;
border-radius: 10px;
}
/* 右からの吹き出しテキスト */
.kaiwa-text-left {
position: relative;
margin-right: 120px;
padding: 10px;
background-color: #fafdff;
border: 2px solid #d7ebfe;
border-radius: 10px;
}
p.kaiwa-text {
margin: 0 0 20px;
}
p.kaiwa-text:last-child {
margin-bottom: 0;
}
/* 左の三角形を作る */
.kaiwa-text-right:before {
position: absolute;
content: '';
border: 10px solid transparent;
border-right: 10px solid #d7ebfe;
top: 15px;
left: -20px;
}
.kaiwa-text-right:after {
position: absolute;
content: '';
border: 10px solid transparent;
border-right: 10px solid #fafdff;
top: 15px;
left: -17px;
}
/* 右の三角形を作る */
.kaiwa-text-left:before {
position: absolute;
content: '';
border: 10px solid transparent;
border-left: 10px solid #d7ebfe;
top: 15px;
right: -20px;
}
.kaiwa-text-left:after {
position: absolute;
content: '';
border: 10px solid transparent;
border-left: 10px solid #fafdff;
top: 15px;
right: -17px;
}
/* 回り込み解除 */
.kaiwa:after,.kaiwa:before {
clear: both;
content: "";
display: block;
}