2014-04-22 17:57:16 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
font: 12px "Consolas", monospace;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
a:focus,
|
|
|
|
button:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
font: inherit;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.user {
|
|
|
|
background: none;
|
|
|
|
border: 0;
|
|
|
|
font: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.user:hover {
|
|
|
|
color: #f00;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#wrap,
|
|
|
|
#viewport {
|
|
|
|
height: 100%;
|
|
|
|
min-width: 640px;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#sidebar {
|
|
|
|
border-right: 1px solid #e1e1e8;
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
#sidebar .network {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
2014-04-23 18:44:44 +00:00
|
|
|
#sidebar .channel {
|
|
|
|
display: block;
|
|
|
|
margin: 5px;
|
2014-04-22 17:57:16 +00:00
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2014-04-23 18:44:44 +00:00
|
|
|
#sidebar .channel:first-child {
|
2014-04-22 17:57:16 +00:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
#chat {
|
|
|
|
bottom: 0;
|
|
|
|
left: 200px;
|
|
|
|
line-height: 16px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
#chat a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
#chat form {
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
bottom: 1px;
|
|
|
|
height: 30px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
#chat form input {
|
|
|
|
border: 0;
|
|
|
|
font: inherit;
|
|
|
|
height: 30px;
|
|
|
|
margin: 0;
|
|
|
|
outline: none;
|
|
|
|
padding: 0 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-04-23 22:03:35 +00:00
|
|
|
#chat .query .users,
|
|
|
|
#chat .lobby .users,
|
|
|
|
#chat .lobby .close {
|
2014-04-22 17:57:16 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2014-04-23 22:03:35 +00:00
|
|
|
#chat .query .title,
|
2014-04-23 18:44:44 +00:00
|
|
|
#chat .lobby .title,
|
2014-04-23 22:03:35 +00:00
|
|
|
#chat .query .messages,
|
2014-04-23 18:44:44 +00:00
|
|
|
#chat .lobby .messages {
|
2014-04-22 17:57:16 +00:00
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
#chat .window {
|
|
|
|
background: #fff;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-04-23 22:03:35 +00:00
|
|
|
#chat .close {
|
|
|
|
float: right;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2014-04-22 17:57:16 +00:00
|
|
|
#chat .title {
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
height: 43px;
|
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
2014-04-23 22:03:35 +00:00
|
|
|
padding: 0 10px;
|
2014-04-22 17:57:16 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 160px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
#chat .title h1 {
|
|
|
|
color: #333;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 43px;
|
|
|
|
}
|
|
|
|
#chat .messages {
|
2014-04-24 18:03:30 +00:00
|
|
|
box-shadow: inset 8px 0 0 #f5f5f5;
|
2014-04-22 17:57:16 +00:00
|
|
|
bottom: 30px;
|
|
|
|
left: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 4px 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 160px;
|
|
|
|
top: 43px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
2014-04-26 15:26:30 +00:00
|
|
|
#chat .show-more {
|
|
|
|
display: none;
|
2014-04-26 19:56:04 +00:00
|
|
|
padding: 2px 8px 0 16px;
|
|
|
|
}
|
|
|
|
#chat .show-more-button {
|
|
|
|
padding: 6px 0;
|
|
|
|
width: 100%;
|
2014-04-26 15:26:30 +00:00
|
|
|
}
|
2014-04-24 18:03:30 +00:00
|
|
|
#chat .msg {
|
|
|
|
border-left: 8px solid transparent;
|
2014-04-22 17:57:16 +00:00
|
|
|
line-height: 1.3em;
|
|
|
|
padding: 2px 8px;
|
|
|
|
}
|
|
|
|
#chat .time {
|
2014-04-23 22:03:35 +00:00
|
|
|
color: #aaa;
|
2014-04-22 17:57:16 +00:00
|
|
|
}
|
2014-04-24 18:03:30 +00:00
|
|
|
#chat .highlight {
|
|
|
|
background: #fcf8e3;
|
|
|
|
border-left-color: #faebcc;
|
|
|
|
}
|
2014-04-22 17:57:16 +00:00
|
|
|
#chat .user {
|
|
|
|
color: #f00;
|
|
|
|
}
|
|
|
|
#chat .error,
|
|
|
|
#chat .join,
|
|
|
|
#chat .kick,
|
|
|
|
#chat .mode,
|
|
|
|
#chat .nick,
|
|
|
|
#chat .notice,
|
|
|
|
#chat .part,
|
|
|
|
#chat .quit,
|
2014-04-23 18:44:44 +00:00
|
|
|
#chat .topic,
|
|
|
|
#chat .whois {
|
2014-04-23 22:03:35 +00:00
|
|
|
color: #888;
|
2014-04-22 17:57:16 +00:00
|
|
|
}
|
2014-04-24 18:03:30 +00:00
|
|
|
#chat .highlight .type,
|
2014-04-23 18:44:44 +00:00
|
|
|
#chat .motd .type,
|
|
|
|
#chat .notice .type,
|
|
|
|
#chat .whois .type {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-04-22 17:57:16 +00:00
|
|
|
#chat .users {
|
|
|
|
background: #fff;
|
|
|
|
border-left: 1px solid #ddd;
|
|
|
|
bottom: 30px;
|
|
|
|
line-height: 1.4em;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 4px 8px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
#chat .users .count {
|
2014-04-23 22:03:35 +00:00
|
|
|
color: #888;
|
2014-04-22 17:57:16 +00:00
|
|
|
}
|
|
|
|
#chat .users .user {
|
|
|
|
display: block;
|
|
|
|
padding: 2px 0;
|
|
|
|
}
|