dispatch/client/src/style.css

103 lines
1.2 KiB
CSS
Raw Normal View History

2015-01-17 01:37:21 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
2015-01-17 01:37:21 +00:00
}
body {
font-family: Inconsolata, sans-serif;
background: #111;
color: #FFF;
}
input {
font: 16px Inconsolata, sans-serif;
background: rgba(0,0,0,0.25);
color: #FFF;
outline: none;
border: none;
}
2015-01-17 01:37:21 +00:00
p {
line-height: 1.5;
}
.tablist {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 200px;
padding: 15px;
2015-01-17 01:37:21 +00:00
overflow: auto;
}
.tablist p {
cursor: pointer;
}
.tablist p:hover {
color: #AAA;
}
.chat-title-bar {
2015-01-17 01:37:21 +00:00
position: fixed;
left: 200px;
top: 0;
right: 200px;
height: 50px;
padding: 0 15px;
line-height: 50px;
background: rgba(0,0,0,0.25);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.chat-title {
}
.messagebox {
position: fixed;
left: 200px;
top: 50px;
bottom: 50px;
right: 200px;
padding: 15px;
2015-01-17 01:37:21 +00:00
overflow: auto;
z-index: 1;
}
.message {
}
.message-info {
color: #666;
}
.message-input-wrap {
position: fixed;
left: 200px;
bottom: 0px;
right: 0;
height: 50px;
z-index: 1;
}
.message-input {
width: 100%;
height: 100%;
padding: 15px;
}
2015-01-17 01:37:21 +00:00
.userlist {
position: fixed;
top: 0;
bottom: 50px;
2015-01-17 01:37:21 +00:00
right: 0;
width: 200px;
padding: 15px;
2015-01-17 01:37:21 +00:00
overflow: auto;
}