chatthing/static/chat.css

32 lines
403 B
CSS
Raw Permalink Normal View History

2024-11-11 15:52:32 +00:00
html,
body {
background: #222;
color: white;
2024-11-11 15:52:32 +00:00
}
.message {
display: flex;
flex-direction: column;
}
.message p {
width: fit-content;
background: #333;
border: 2px solid #999;
padding: 10px;
border-radius: 15px;
}
.from_user p,
.from_user .timestamp {
align-self: flex-end;
}
.from_user p {
border-bottom-right-radius: 5px;
}
.from_admin p {
border-bottom-left-radius: 5px;
}