40 lines
No EOL
736 B
CSS
40 lines
No EOL
736 B
CSS
.speech-bubble {
|
|
background: white;
|
|
border: 2px solid #333;
|
|
border-radius: 10px;
|
|
padding: 12px 16px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.speech-bubble::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -12px;
|
|
right: 20px;
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 10px solid transparent;
|
|
border-right: 0 solid transparent;
|
|
border-top: 12px solid #333;
|
|
}
|
|
|
|
.speech-bubble::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -8px;
|
|
right: 22px;
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 8px solid transparent;
|
|
border-right: 0 solid transparent;
|
|
border-top: 10px solid white;
|
|
}
|
|
|
|
.speech-text {
|
|
flex: 1;
|
|
white-space: nowrap;
|
|
font-size: 1.5rem;
|
|
} |