You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
313 B
CSS

:root {
--background: white;
}
.chat > p {
margin-top: 60px;
border: 1px solid currentColor;
padding: 12px;
border-radius: var(--radius);
text-indent: 0;
justify-self: start;
}
.chat > p + p {
margin-top: 45px;
}
.chat > p:nth-child(2n + 2) {
background-color: var(--orange);
grid-column-start: 2;
}