72 lines
806 B
CSS
72 lines
806 B
CSS
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
#wrapper {
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#leave-room {
|
|
margin-bottom: 10px;
|
|
float: right;
|
|
}
|
|
|
|
#user-container {
|
|
width: 500px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
#main-container {
|
|
width: 500px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#messages {
|
|
height: 300px;
|
|
width: 500px;
|
|
border: 1px solid #ccc;
|
|
padding: 20px;
|
|
text-align: left;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#msg-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
#msg {
|
|
width: 400px;
|
|
}
|
|
|
|
.user {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.msg {
|
|
margin-bottom: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.time {
|
|
float: right;
|
|
color: #939393;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.details {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#socket-status,
|
|
#notification-status {
|
|
font-size: 40px;
|
|
}
|
|
.red{
|
|
color: red;
|
|
}
|
|
|
|
.green{
|
|
color: green;
|
|
} |