Skip to content
Permalink
d5e5386e1a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
60 lines (51 sloc) 832 Bytes
* {
box-sizing: border-box;
}
body {
background-color: rgb(32, 49, 88);
color:#fff;
font-family: Arial, Helvetica, sans-serif;
}
a {
color:#fff;
}
.small {
font-size: 14px;
}
.smallImage {
width:20px;
}
#chatBox {
width:100%;
position:absolute;
bottom:70px;
top:60px;
right:0px;
left:0px;
background:#eee;
border:1px solid #333;
color:#000;
padding:15px;
overflow: scroll;
}
#chatInput {
position:fixed;
left:0px;
bottom:0;
width:100%;
background-color:#ccc;
display: flex;
justify-content: space-between;
height: 70px;
}
#chatInput input {
width:100%;
text-indent: 15px;
}
#chatInput button {
margin:0px 0px;
padding:0px 10px;
background-color:#333;
color:#fff;
border:1px solid #333;
}