2016-08-01 08:17:21 +00:00
|
|
|
body {
|
|
|
|
background-color: #EEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errormsg, #successmsg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errormsg {
|
|
|
|
background-color: #8c0000;
|
|
|
|
border-color: #ff0000;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
|
|
|
color: #ff0000;
|
2016-08-03 12:59:48 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
2016-08-01 08:17:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#successmsg {
|
|
|
|
background-color: #188c00;
|
|
|
|
border-color: #00ff00;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
|
|
|
color: #00ff00;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
float: right;
|
2016-08-03 12:59:48 +00:00
|
|
|
width: 20%;
|
2016-08-01 08:17:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#loginregisterbox {
|
|
|
|
margin: auto;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#usercontent {
|
|
|
|
margin: auto;
|
2016-08-03 12:59:48 +00:00
|
|
|
/*width: -moz-calc(100% - 600px);
|
2016-08-03 11:59:14 +00:00
|
|
|
width: -webkit-calc(100% - 600px);
|
2016-08-03 12:59:48 +00:00
|
|
|
width: calc(100% - 600px);*/
|
|
|
|
width: 60%;
|
2016-08-01 08:17:21 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#msginput {
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#channelmessages {
|
|
|
|
width: 100%;
|
|
|
|
height: -moz-calc(100% - 50px);
|
|
|
|
height: -webkit-calc(100% - 50px);
|
|
|
|
height: calc(100% - 50px);
|
2016-08-01 11:46:29 +00:00
|
|
|
overflow: auto;
|
2016-08-01 08:17:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
2016-07-27 13:03:35 +00:00
|
|
|
}
|