48 lines
802 B
CSS
48 lines
802 B
CSS
section {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0.2rem 0;
|
|
}
|
|
|
|
section div {
|
|
max-width: 255px;
|
|
word-wrap: break-word;
|
|
margin-bottom: 20px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.from-them {
|
|
position: relative;
|
|
padding: 10px 20px;
|
|
background: #E5E5EA;
|
|
border-radius: 25px;
|
|
color: black;
|
|
}
|
|
.from-them:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: 2;
|
|
bottom: 0px;
|
|
left: -7px;
|
|
height: 20px;
|
|
border-left: 20px solid #E5E5EA;
|
|
border-bottom-right-radius: 16px 14px;
|
|
-webkit-transform: translate(0, -2px);
|
|
}
|
|
.from-them:after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: 3;
|
|
bottom: 0px;
|
|
left: 4px;
|
|
width: 26px;
|
|
height: 20px;
|
|
background: #1c2230;
|
|
border-bottom-right-radius: 10px;
|
|
-webkit-transform: translate(-30px, -2px);
|
|
}
|