chat-client/style.css

69 lines
900 B
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;
width: 100px;
background-color: #BBB;
}
#users-menu ul {
top: 0;
bottom: 0;
right: 0;
2019-04-13 14:40:31 +10:00
width: 120px;
background-color: #BBB;
}
.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;
}*/
#chat-area {
2019-04-13 14:40:31 +10:00
padding: 0 100px;
}
.chat-content-send {
position: fixed;
left: 340px;
right: 120px;
bottom: 0;
padding: 12px;
background-color: #CCD;
2019-04-13 10:10:18 +10:00
}