anonkun/static/anonkun.css

88 lines
989 B
CSS
Raw Normal View History

2018-06-25 15:52:10 -04:00
img {
max-width:100%;
max-height:100%;
}
.header {
display: initial;
position: fixed;
top: 0;
left: 0;
width: 100%;
list-style-type: none;
margin: 0;
padding: 0;
background-color: #dddddd;
}
.header li {
display: inline;
}
#headerHidden {
display: none;
width: auto;
}
#questContainer {
display: flex;
overflow: auto;
}
#questBody {
padding-left: 10px;
padding-right: 32%;
}
2018-06-21 15:40:38 -04:00
#questPosts {
2018-06-21 20:44:43 -04:00
border-spacing: 15px;
2018-06-21 15:40:38 -04:00
}
.questPostTime {
vertical-align: top;
white-space: nowrap;
}
2018-06-21 20:44:43 -04:00
.questPostData {
vertical-align: top;
}
#newQPostArea {
}
#chatPane {
height: 100%;
width: 30%;
right: 0;
position: fixed;
display: flex;
flex-direction: column;
}
#chatWindow {
border: 1px solid #ccc;
overflow: auto;
flex: 1;
}
2018-06-25 15:52:10 -04:00
.message {
width: 100%;
word-wrap: break-word;
}
#messageTextDiv {
padding-bottom: 10px;
width: 100%;
display: flex;
flex-direction: column;
}
#messageTextArea {
resize: none;
box-sizing: border-box;
}
.greenText {
color: green;
}