2018-06-20 13:07:11 -04:00
|
|
|
.header {
|
|
|
|
display: initial;
|
2018-06-14 22:09:14 -04:00
|
|
|
position: fixed;
|
2018-06-18 22:13:49 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #dddddd;
|
|
|
|
}
|
|
|
|
|
2018-06-20 13:07:11 -04:00
|
|
|
.header li {
|
2018-06-18 22:13:49 -04:00
|
|
|
display: inline;
|
2018-06-14 22:09:14 -04:00
|
|
|
}
|
|
|
|
|
2018-06-20 13:07:11 -04:00
|
|
|
#headerHidden {
|
|
|
|
display: none;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2018-06-18 22:13:49 -04:00
|
|
|
#questContainer {
|
2018-06-14 22:09:14 -04:00
|
|
|
display: flex;
|
2018-06-18 22:13:49 -04:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#questBody {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 32%;
|
2018-06-14 22:09:14 -04:00
|
|
|
}
|
|
|
|
|
2018-06-21 15:40:38 -04:00
|
|
|
#questPosts {
|
|
|
|
border-spacing: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.questPostTime {
|
|
|
|
vertical-align: top;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-06-20 13:07:11 -04:00
|
|
|
#newQPostArea {
|
|
|
|
}
|
|
|
|
|
2018-06-14 22:09:14 -04:00
|
|
|
#chatPane {
|
|
|
|
height: 100%;
|
|
|
|
width: 30%;
|
|
|
|
right: 0;
|
|
|
|
position: fixed;
|
2018-06-18 22:13:49 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-06-14 22:09:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#chatWindow {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
overflow: auto;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2018-06-20 13:07:11 -04:00
|
|
|
#messageTextDiv {
|
2018-06-14 22:09:14 -04:00
|
|
|
padding-bottom: 10px;
|
|
|
|
width: 100%;
|
2018-06-18 22:13:49 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-06-14 22:09:14 -04:00
|
|
|
}
|
|
|
|
|
2018-06-20 13:07:11 -04:00
|
|
|
#messageTextArea {
|
2018-06-14 22:09:14 -04:00
|
|
|
resize: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2018-06-17 17:49:49 -04:00
|
|
|
|
|
|
|
.greenText {
|
|
|
|
color: green;
|
|
|
|
}
|