60 lines
773 B
CSS
60 lines
773 B
CSS
.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;
|
|
width: 100px;
|
|
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;
|
|
}
|
|
|
|
/*.add-chat {
|
|
text-align: center;
|
|
background-color: #BBC;
|
|
}*/
|
|
|
|
#chat-area {
|
|
padding-left: 100px;
|
|
}
|