2015-01-17 01:37:21 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-01-21 02:06:34 +00:00
|
|
|
box-sizing: border-box;
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2015-02-18 21:55:08 +00:00
|
|
|
font-family: Droid Sans Mono, monospace;
|
2015-01-28 01:54:47 +00:00
|
|
|
background: #f0f0f0;
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 02:06:34 +00:00
|
|
|
input {
|
2015-02-18 21:55:08 +00:00
|
|
|
font: 16px Droid Sans Mono, monospace;
|
2015-01-21 02:06:34 +00:00
|
|
|
border: none;
|
2015-01-28 01:54:47 +00:00
|
|
|
outline: none;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 23:38:51 +00:00
|
|
|
button {
|
|
|
|
font: 16px Montserrat, sans-serif;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-01-17 01:37:21 +00:00
|
|
|
p {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2015-02-16 20:53:01 +00:00
|
|
|
i[class^="icon-"]:before, i[class*=" icon-"]:before {
|
2015-02-16 21:00:31 +00:00
|
|
|
margin: 0;
|
2015-02-16 20:53:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-17 01:37:21 +00:00
|
|
|
.tablist {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2015-01-28 01:54:47 +00:00
|
|
|
width: 200px;
|
2015-01-29 23:38:51 +00:00
|
|
|
background: #222;
|
2015-01-28 01:54:47 +00:00
|
|
|
color: #FFF;
|
2015-01-29 23:38:51 +00:00
|
|
|
font-family: Montserrat, sans-serif;
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|
|
|
|
|
2015-05-23 02:38:43 +00:00
|
|
|
.tab-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
bottom: 50px;
|
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-01-17 01:37:21 +00:00
|
|
|
.tablist p {
|
2015-01-29 23:38:51 +00:00
|
|
|
padding: 3px 15px;
|
2015-01-17 01:37:21 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-05-23 02:38:43 +00:00
|
|
|
.tablist p:last-child {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2015-01-17 01:37:21 +00:00
|
|
|
.tablist p:hover {
|
2015-01-29 23:38:51 +00:00
|
|
|
background: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablist p.selected {
|
|
|
|
padding-left: 10px;
|
|
|
|
border-left: 5px solid #6BB758;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-server {
|
2015-05-23 02:38:43 +00:00
|
|
|
color: #999;
|
|
|
|
margin-top: 10px !important;
|
2015-01-29 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-connect {
|
|
|
|
width: 100%;
|
|
|
|
height: 50px;
|
|
|
|
background: #6BB758;
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-connect:hover {
|
|
|
|
background: #7BBF6A;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-connect:active {
|
|
|
|
background: #6BB758;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-buttons {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
height: 50px;
|
|
|
|
width: 200px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-02-07 02:10:58 +00:00
|
|
|
.side-buttons i {
|
2015-05-23 02:38:43 +00:00
|
|
|
display: inline-block;
|
2015-02-07 02:10:58 +00:00
|
|
|
color: #999;
|
2015-05-23 02:38:43 +00:00
|
|
|
width: 50%;
|
|
|
|
line-height: 50px;
|
2015-02-07 02:10:58 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 20px;
|
2015-05-23 02:38:43 +00:00
|
|
|
border-top: 1px solid #1D1D1D;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-buttons i:not(:first-child) {
|
|
|
|
border-left: 1px solid #1D1D1D;
|
2015-02-07 02:10:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.side-buttons i:hover {
|
2015-05-23 02:38:43 +00:00
|
|
|
color: #CCC;
|
|
|
|
background: #1D1D1D;
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|
|
|
|
|
2015-02-03 21:54:46 +00:00
|
|
|
.connect {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 200px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form h1 {
|
|
|
|
font: 32px Montserrat, sans-serif;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input {
|
|
|
|
display: block;
|
|
|
|
margin: 5px 0px;
|
|
|
|
padding: 10px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input[type="submit"],
|
|
|
|
.connect-form input[type="text"] {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input[type="submit"] {
|
|
|
|
height: 50px;
|
|
|
|
font-family: Montserrat, sans-serif;
|
|
|
|
background: #6BB758;
|
|
|
|
color: #FFF;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input[type="submit"]:hover {
|
|
|
|
background: #7BBF6A;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input[type="submit"]:active {
|
|
|
|
background: #6BB758;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form input[type="checkbox"] {
|
|
|
|
display: inline-block;
|
2015-02-14 22:38:14 +00:00
|
|
|
margin-right: 5px;
|
2015-02-07 02:10:58 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form i {
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #999;
|
|
|
|
padding: 10px 5px;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form i:hover {
|
|
|
|
color: #000;
|
2015-02-03 21:54:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.connect-form label {
|
2015-02-07 02:10:58 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding: 10px 0;
|
2015-02-03 21:54:46 +00:00
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2015-01-21 02:06:34 +00:00
|
|
|
.chat-title-bar {
|
2015-01-29 23:38:51 +00:00
|
|
|
font-family: Montserrat, sans-serif;
|
2015-01-17 01:37:21 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 200px;
|
|
|
|
top: 0;
|
2015-05-13 23:42:25 +00:00
|
|
|
right: 0;
|
2015-01-21 02:06:34 +00:00
|
|
|
height: 50px;
|
2015-05-10 23:09:59 +00:00
|
|
|
padding-left: 15px;
|
2015-01-21 02:06:34 +00:00
|
|
|
line-height: 50px;
|
2015-01-29 23:38:51 +00:00
|
|
|
border-bottom: 1px solid #DDD;
|
2015-05-10 23:09:59 +00:00
|
|
|
display: flex;
|
|
|
|
font-size: 20px;
|
2015-01-29 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 23:42:25 +00:00
|
|
|
.chat-channel .chat-title-bar {
|
|
|
|
right: 200px;
|
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:59 +00:00
|
|
|
.chat-title-bar i {
|
|
|
|
padding: 0 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:42:25 +00:00
|
|
|
.chat-server .icon-search {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-server .userlist-bar, .chat-private .userlist-bar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:59 +00:00
|
|
|
.button-leave {
|
|
|
|
border-left: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-leave:hover {
|
|
|
|
background: #DDD;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-title {
|
2015-05-23 02:38:43 +00:00
|
|
|
font-size: 24px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-topic-wrap {
|
2015-05-10 23:09:59 +00:00
|
|
|
flex: 1;
|
2015-05-23 02:38:43 +00:00
|
|
|
position: relative;
|
|
|
|
margin: 0 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-topic {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
bottom: -4px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #999;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-topic a {
|
|
|
|
color: #999;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-topic a:hover {
|
|
|
|
text-decoration: underline;
|
2015-01-29 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:59 +00:00
|
|
|
.userlist-bar {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 200px;
|
|
|
|
height: 50px;
|
|
|
|
border-left: 1px solid #DDD;
|
|
|
|
border-bottom: 1px solid #DDD;
|
2015-01-29 23:38:51 +00:00
|
|
|
line-height: 50px;
|
2015-05-10 23:09:59 +00:00
|
|
|
text-align: center;
|
|
|
|
padding: 0 15px;
|
|
|
|
font-family: Montserrat, sans-serif;
|
2015-01-29 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:59 +00:00
|
|
|
.userlist-bar i {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
left: 200px;
|
|
|
|
top: 50px;
|
|
|
|
bottom: 50px;
|
|
|
|
right: 200px;
|
|
|
|
z-index: 2;
|
|
|
|
background: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:42:25 +00:00
|
|
|
.chat-private .search {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:59 +00:00
|
|
|
.search-input {
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 10px 15px;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox {
|
|
|
|
position: fixed;
|
|
|
|
left: 200px;
|
|
|
|
top: 50px;
|
|
|
|
bottom: 50px;
|
2015-05-13 23:42:25 +00:00
|
|
|
right: 0;
|
2015-01-17 01:37:21 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:42:25 +00:00
|
|
|
.chat-channel .messagebox {
|
|
|
|
right: 200px;
|
|
|
|
}
|
|
|
|
|
2015-02-15 22:27:00 +00:00
|
|
|
.messagebox > div {
|
|
|
|
padding: 10px 15px;
|
2015-02-17 00:27:02 +00:00
|
|
|
overflow-y: auto !important;
|
2015-02-15 22:27:00 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 02:06:34 +00:00
|
|
|
.message {
|
2015-02-15 22:27:00 +00:00
|
|
|
white-space: nowrap;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-info {
|
2015-01-29 23:38:51 +00:00
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
2015-02-03 23:55:41 +00:00
|
|
|
.message-action {
|
2015-02-14 22:38:14 +00:00
|
|
|
color: #FF6698;
|
2015-02-03 23:55:41 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 23:38:51 +00:00
|
|
|
.message-time {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-sender {
|
|
|
|
color: #6BB758;
|
2015-02-21 06:11:38 +00:00
|
|
|
cursor: pointer;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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-02-07 02:10:58 +00:00
|
|
|
border-top: 1px solid #DDD;
|
2015-01-21 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
2015-01-17 01:37:21 +00:00
|
|
|
.userlist {
|
|
|
|
position: fixed;
|
2015-01-28 01:54:47 +00:00
|
|
|
top: 50px;
|
2015-01-21 02:06:34 +00:00
|
|
|
bottom: 50px;
|
2015-01-17 01:37:21 +00:00
|
|
|
right: 0;
|
|
|
|
width: 200px;
|
2015-01-28 01:54:47 +00:00
|
|
|
border-left: 1px solid #DDD;
|
2015-02-05 01:14:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.userlist > div {
|
2015-02-17 00:27:02 +00:00
|
|
|
overflow-y: auto !important;
|
2015-02-14 22:38:14 +00:00
|
|
|
padding: 10px 0px;
|
2015-01-30 01:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.userlist p {
|
|
|
|
padding: 0px 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userlist p:hover {
|
|
|
|
background: #DDD;
|
2015-01-17 01:37:21 +00:00
|
|
|
}
|