streams/view/css/mod_chat.css

56 lines
632 B
CSS
Raw Normal View History

#chatContainer {
2014-02-02 16:28:58 +00:00
height: 100%;
width: 100%;
}
#chatTopBar {
2014-02-02 16:28:58 +00:00
float: left;
height: 400px;
width: 650px;
overflow-y: auto;
}
#chatUsers {
2014-02-02 16:28:58 +00:00
float: right;
width: 120px;
height: 100%;
border: 1px solid #000;
}
#chatBottomBar {
2014-02-02 16:28:58 +00:00
position: relative;
bottom: 0;
height: 150px;
margin-top: 20px;
}
section {
padding-bottom: 0;
}
2014-02-09 22:52:09 +00:00
.chat-item {
padding: 3px;
}
.chat-item-end {
clear: both;
}
.chat-item-photo {
float: left;
height: 32px;
width: 32px;
}
.chat-body {
float: left;
width: 80%;
margin-left: 15px;
}
.chat-item-text {
float: left;
padding: 3px;
2014-02-09 22:59:19 +00:00
display: inline-block;
2014-02-09 22:52:09 +00:00
}