Files
WebDB/website/styles/chat.css
2017-01-10 17:08:40 +01:00

44 lines
682 B
CSS

.chat {
text-align: center;
}
.chat-history {
/*border: solid #845663;*/
width: 80%;
height: 500px;
margin: 10px auto;
background-color: white;
vertical-align: bottom;
}
.chat-field input {
border-radius: 8px;
}
.chat-field input[type="text"] {
width: calc(75% - 60px);
}
.chat-field input[type="submit"] {
width: 60px;
}
.chat-message-self {
text-align: right;
float: right;
margin: 10px;
background-color: aqua;
padding: 10px;
border-radius: 10px;
}
.chat-message-other {
text-align: left;
float: left;
margin: 10px;
background-color: aquamarine;
padding: 10px;
border-radius: 10px;
}