64 lines
1012 B
CSS
64 lines
1012 B
CSS
.chat {
|
|
text-align: center;
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.chat-history {
|
|
/*border: solid #845663;*/
|
|
width: 80%;
|
|
height: 500px;
|
|
margin: auto auto;
|
|
background-color: white;
|
|
vertical-align: bottom;
|
|
overflow-y: scroll;
|
|
padding: 5px 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.chat-field {
|
|
padding: 15px;
|
|
}
|
|
|
|
.chat-field input {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.chat-field input[type="text"] {
|
|
width: calc(75% - 60px);
|
|
|
|
}
|
|
|
|
.chat-field input[type="submit"] {
|
|
width: 60px;
|
|
background-color: #845663;
|
|
color: white;
|
|
padding: 5px;
|
|
}
|
|
|
|
.chat-message {
|
|
width: 100%;
|
|
min-height: 40px;
|
|
padding-top: 10px;
|
|
clear: both;
|
|
}
|
|
|
|
.chat-message-self, .chat-message-other {
|
|
text-align: left;
|
|
border-radius: 20px;
|
|
padding: 10px 12px;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.chat-message-self {
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
background-color: darkgreen;
|
|
color: white;
|
|
}
|
|
|
|
.chat-message-other {
|
|
float: left;
|
|
margin-left: 10px;
|
|
background-color: aquamarine;
|
|
} |