chat-client/style.css

107 lines
1.4 KiB
CSS

.server-menu ul#server-menu-profiles {
top: 0;
bottom: 56px;
overflow-y: auto;
}
#chats-menu ul {
top: 0;
bottom: 0;
left: 240px;
width: 120px;
background-color: #BBB;
overflow-y: auto;
}
#users-menu ul {
top: 0;
bottom: 0;
right: 0;
width: 120px;
background-color: #BBB;
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;
}
/*.add-chat {
text-align: center;
background-color: #BBC;
}*/
#chat-content {
top: 0;
bottom: 0;
left: 360px;
right: 120px;
overflow-y: auto;
position: fixed;
padding: 10px;
}
#chat-area {
padding: 0 120px;
}
#chat-content-send {
position: fixed;
left: 360px;
right: 120px;
bottom: 0;
padding: 12px;
background-color: #CCD;
}
.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;
}