chat-client/style.css

111 lines
1.5 KiB
CSS
Raw Normal View History

.server-menu ul#server-menu-profiles {
top: 0;
bottom: 56px;
overflow-y: auto;
}
#chats-menu ul {
top: 0;
bottom: 0;
left: 240px;
2019-04-13 16:34:16 +10:00
width: 120px;
background-color: #BBB;
2019-04-13 16:34:16 +10:00
overflow-y: auto;
}
#users-menu ul {
top: 0;
bottom: 0;
right: 0;
2019-04-13 14:40:31 +10:00
width: 120px;
background-color: #BBB;
2019-04-13 16:34:16 +10:00
overflow-y: auto;
}
.menu-vertical ul {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #CCC;
position: fixed;
}
.server-menu ul {
width: 240px;
left: 0;
bottom: 0;
}
.menu-vertical ul li a {
display: block;
padding: 20px;
text-decoration: none;
color: #000;
}
.menu-vertical ul li a:hover {
background-color: #AAA;
}
.chat-main {
padding-left: 240px;
}
2019-04-13 10:10:18 +10:00
/*.add-chat {
text-align: center;
background-color: #BBC;
}*/
2019-04-13 16:34:16 +10:00
#chat-content {
top: 0;
bottom: 0;
left: 360px;
right: 120px;
overflow-y: auto;
position: fixed;
padding: 10px;
2019-04-13 14:40:31 +10:00
}
#chat-area {
padding: 0 120px;
}
2019-04-13 16:34:16 +10:00
#chat-content-send {
2019-04-13 14:40:31 +10:00
position: fixed;
2019-04-13 16:34:16 +10:00
left: 360px;
2019-04-13 14:40:31 +10:00
right: 120px;
bottom: 0;
padding: 12px;
background-color: #CCD;
2019-04-13 10:10:18 +10:00
}
.chat-content-message {
display: inline-block;
float: left;
width: 80%;
}
.chat-content-message div
{
padding: 8px;
margin: 4px;
border-radius: 6px;
background-color: #CCD;
}
.chat-content-message p.message-header {
margin: 8px 12px;
}
.chat-content-message.sender {
float: right;
}
.chat-content-message.sender div {
background-color: #AAE;
}
2019-04-17 17:44:12 +10:00
.chat-content-message p {
word-break: break-all;
}