thelounge/client/css/style.css

657 lines
11 KiB
CSS
Raw Normal View History

2014-05-28 22:57:39 +02:00
/* http://www.google.com/fonts/specimen/Lato */
2014-06-15 18:10:20 +02:00
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
2014-05-28 22:57:39 +02:00
2014-04-22 19:57:16 +02:00
* {
box-sizing: border-box;
}
2014-06-15 18:10:20 +02:00
.preload * {
transition: none !important;
}
2014-04-22 19:57:16 +02:00
html,
body {
2014-05-30 02:23:23 +02:00
color: #222;
2014-06-15 18:10:20 +02:00
font: 16px Lato, sans-serif;
2014-04-22 19:57:16 +02:00
height: 100%;
margin: 0;
}
2014-05-30 02:23:23 +02:00
body {
overflow-x: hidden;
position: relative;
}
2014-05-28 22:57:39 +02:00
a {
color: inherit;
text-decoration: none;
}
2014-06-15 18:10:20 +02:00
a:visited {
color: #f00;
}
2014-05-02 19:46:18 +02:00
h1,
h2 {
2014-05-28 22:57:39 +02:00
font: inherit;
line-height: inherit;
2014-05-02 19:46:18 +02:00
margin: 0;
}
2014-05-04 02:33:05 +02:00
ul,
li {
list-style: none;
margin: 0;
padding: 0;
}
2014-06-22 23:54:15 +02:00
input {
outline: 0;
}
2014-05-30 02:23:23 +02:00
button {
border: none;
background: none;
margin: 0;
outline: none;
padding: 0;
}
2014-06-15 18:10:20 +02:00
.btn {
border: 2px solid #95a5a6;
2014-06-23 10:40:39 +02:00
border: 2px solid #84d1ff;
2014-06-15 18:10:20 +02:00
border-radius: 5px;
color: #95a5a6;
2014-06-23 10:40:39 +02:00
color: #84d1ff;
2014-06-15 18:10:20 +02:00
display: inline-block;
font: bold 12px Lato, sans-serif;
letter-spacing: 1px;
margin-bottom: 10px;
2014-06-23 19:28:36 +02:00
padding: 10px 18px;
2014-06-15 18:10:20 +02:00
text-transform: uppercase;
transition: background .2s, border-color .2s, color .2s;
word-spacing: 3px;
}
.btn:hover {
background: #95a5a6;
2014-06-23 10:40:39 +02:00
background: #84d1ff;
2014-06-15 18:10:20 +02:00
color: #fff;
}
.btn:active {
box-shadow: none;
opacity: .8;
}
2014-06-22 22:11:03 +02:00
.mega-octicon {
font-size: 24px;
}
2014-05-30 02:23:23 +02:00
#wrap {
height: 100%;
position: relative;
overflow: hidden;
width: 100%;
}
#viewport {
height: 100%;
position: relative;
width: 100%;
2014-06-23 21:01:28 +02:00
transition: all .4s;
2014-05-30 23:31:47 +02:00
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-perspective: 1000;
perspective: 1000;
2014-05-30 02:23:23 +02:00
}
2014-04-22 19:57:16 +02:00
#sidebar {
2014-05-28 22:57:39 +02:00
background: #262c36;
bottom: 0;
left: 0;
line-height: 2em;
2014-05-30 02:23:23 +02:00
overflow-y: auto;
2014-05-30 23:31:47 +02:00
-webkit-overflow-scrolling: touch;
2014-06-03 02:27:03 +02:00
padding: 40px;
2014-05-02 19:46:18 +02:00
position: absolute;
2014-05-28 22:57:39 +02:00
top: 0;
2014-06-03 02:27:03 +02:00
width: 220px;
2014-05-24 23:56:28 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar a {
2014-06-13 18:52:36 +02:00
border: 1px solid transparent;
border-radius: 2px;
2014-05-28 22:57:39 +02:00
color: #7c838d;
display: block;
2014-05-28 22:57:39 +02:00
font: 14px Lato;
2014-06-15 18:10:20 +02:00
margin: 1px -11px;
outline: 0;
2014-06-13 18:52:36 +02:00
padding: 6px 10px 8px;
2014-05-28 22:57:39 +02:00
position: relative;
2014-06-13 18:52:36 +02:00
transition: background .1s, color 5s;
2014-06-22 23:54:15 +02:00
z-index: 2;
2014-06-13 18:52:36 +02:00
}
#sidebar a:hover {
background: rgba(255, 255, 255, 0.025);
2014-04-22 19:57:16 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar a.active {
2014-06-13 18:52:36 +02:00
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, .025);
2014-05-28 22:57:39 +02:00
color: #fff;
2014-06-13 18:52:36 +02:00
transition: color 0s;
2014-05-24 23:56:28 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar a:hover .badge {
2014-05-24 23:56:28 +02:00
opacity: 0;
}
2014-05-28 22:57:39 +02:00
#sidebar a:hover .close {
opacity: .4;
}
#sidebar h1,
#sidebar h2 {
color: #fff;
font: bold 15px Lato;
2014-06-15 18:10:20 +02:00
margin-bottom: 6px;
2014-05-24 23:56:28 +02:00
}
2014-06-22 22:11:03 +02:00
#sidebar .octicon {
float: left;
2014-06-23 19:28:36 +02:00
margin: 1px 8px 0 1px;
2014-06-23 10:40:39 +02:00
}
2014-06-21 21:39:51 +02:00
#sidebar .lobby {
color: #84d1ff !important;
font-size: 15px;
font-weight: bold;
2014-05-28 22:57:39 +02:00
}
#sidebar .close {
background: no-repeat url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogPGc+DQogIDx0aXRsZT5MYXllciAxPC90aXRsZT4NCiAgPHBhdGggZmlsbD0iI2ZmZmZmZiIgaWQ9InN2Z18xIiBkPSJtMTIuODcyLDEuNTYyYzAuMTk1MDAxLDAuMTk0IDAuMTk1MDAxLDAuNTEzIDAsMC43MDdsLTMuODg5LDMuODkxYy0wLjE5MywwLjE5NCAtMC4xOTMsMC41MTMgMCwwLjcwOGwzLjg4NywzLjg5MmMwLjE5NSwwLjE5NCAwLjE5NSwwLjUxMyAwLDAuNzA3bC0xLjQxNTk5OSwxLjQxM2MtMC4xOTMwMDEsMC4xOTQgLTAuNTEyLDAuMTk0IC0wLjcwNzAwMSwwbC0zLjg4NSwtMy44OTJjLTAuMTk0LC0wLjE5NCAtMC41MTMsLTAuMTk0IC0wLjcwNywwbC0zLjg4OSwzLjg4OWMtMC4xOTQsMC4xOTUgLTAuNTEzLDAuMTk1IC0wLjcwNywwbC0xLjQxNCwtMS40MTU5OTljLTAuMTk0LC0wLjE5MzAwMSAtMC4xOTQsLTAuNTEyIDAsLTAuNzA3MDAxbDMuODksLTMuODg5YzAuMTk0LC0wLjE5NCAwLjE5NCwtMC41MTMgMCwtMC43MDhsLTMuODg3LC0zLjg5MWMtMC4xOTQsLTAuMTk1IC0wLjE5NCwtMC41MTMgMCwtMC43MDdsMS40MTUsLTEuNDE0YzAuMTk0LC0wLjE5NCAwLjUxMywtMC4xOTQgMC43MDcsMGwzLjg4NSwzLjg5MWMwLjE5NCwwLjE5NSAwLjUxMywwLjE5NSAwLjcwNywwLjAwMWwzLjg4OCwtMy44OWMwLjE5NSwtMC4xOTMgMC41MTQsLTAuMTkzIDAuNzA3LDBsMS40MTUsMS40MTV6Ii8+DQogPC9nPg0KPC9zdmc+);
2014-06-13 18:52:36 +02:00
background-color: rgba(0, 0, 0, .2);
2014-05-24 23:56:28 +02:00
background-size: 50%;
2014-05-28 22:57:39 +02:00
background-position: 5px 6px;
border-radius: 3px;
height: 18px;
2014-05-24 23:56:28 +02:00
margin-top: 1px;
2014-06-13 18:52:36 +02:00
margin-right: 10px;
2014-05-24 23:56:28 +02:00
opacity: 0;
position: absolute;
2014-05-28 22:57:39 +02:00
right: 0;
transition: all .1s;
width: 18px;
}
#sidebar .close:hover {
2014-06-13 18:52:36 +02:00
background-color: rgba(0, 0, 0, .4);
2014-05-28 22:57:39 +02:00
opacity: .8 !important;
}
#sidebar .badge {
2014-06-13 18:52:36 +02:00
background: rgba(255, 255, 255, .06);
2014-05-28 22:57:39 +02:00
border-radius: 3px;
color: #afb6c0;
2014-05-02 19:46:18 +02:00
float: right;
2014-05-28 22:57:39 +02:00
font-size: 10px;
margin-top: 1px;
padding: 3px 6px;
transition: all .1s;
2014-05-04 13:05:06 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar .badge.highlight {
background: #fff;
color: #49505a;
2014-05-04 13:05:06 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar .badge:empty {
2014-05-04 13:05:06 +02:00
display: none;
2014-05-02 19:46:18 +02:00
}
2014-06-13 18:52:36 +02:00
#sidebar .pulse {
color: #fff;
2014-06-21 21:39:51 +02:00
transition: color .2s;
2014-06-13 18:52:36 +02:00
}
2014-05-28 22:57:39 +02:00
#sidebar .network {
margin-top: 30px;
}
2014-06-21 21:39:51 +02:00
#sidebar .footer {
bottom: 0;
height: 50px;
left: 0;
padding: 0 40px;
position: absolute;
right: 0;
}
#sidebar .footer small {
color: #7c838d;
display: block;
font-size: 12px;
opacity: .4;
text-align: center;
text-transform: uppercase;
word-spacing: 3px;
}
2014-06-23 10:40:39 +02:00
#sidebar #logout,
#sidebar #settings-link {
display: none;
}
#sidebar.signed-in #login {
display: none;
}
#sidebar.signed-in #logout,
#sidebar.signed-in #settings-link {
display: block;
}
2014-06-23 19:28:36 +02:00
#sidebar .hidden {
display: none !important;
}
2014-05-02 19:46:18 +02:00
#main {
2014-05-28 22:57:39 +02:00
bottom: 0;
2014-06-03 02:27:03 +02:00
left: 220px;
2014-05-02 19:46:18 +02:00
position: absolute;
2014-04-22 19:57:16 +02:00
right: 0;
2014-05-28 22:57:39 +02:00
top: 0;
2014-04-22 19:57:16 +02:00
}
2014-05-02 19:46:18 +02:00
#main .window {
2014-04-22 19:57:16 +02:00
background: #fff;
2014-05-04 02:33:05 +02:00
bottom: 0;
2014-06-15 18:10:20 +02:00
display: none;
2014-05-28 22:57:39 +02:00
left: 0;
2014-05-04 02:33:05 +02:00
position: absolute;
right: 0;
2014-05-28 22:57:39 +02:00
top: 0;
2014-05-04 02:33:05 +02:00
}
2014-06-15 18:10:20 +02:00
#main .window.active {
display: block;
}
#main .wrap {
margin: 0 auto;
max-width: 480px;
2014-06-16 00:07:17 +02:00
overflow: auto;
2014-06-15 18:10:20 +02:00
padding: 0 20px;
}
2014-06-23 21:01:28 +02:00
#header {
background: #fff;
border-bottom: 1px solid #eee;
display: none;
left: 0;
font-size: 13px;
height: 40px;
line-height: 40px;
position: absolute;
right: 0;
text-align: center;
top: 0px;
z-index: 999;
}
#header button {
color: #aaa;
height: 32px;
opacity: .5;
top: 4px;
transition: opacity .2s;
width: 32px;
}
#header button:hover {
opacity: 1;
}
#header h1 {
color: #222;
display: inline;
font-size: 15px;
}
#header .channel #rt {
display: block;
}
#header #lt {
left: 4px;
position: absolute;
}
#header #rt {
display: none;
position: absolute;
right: 4px;
}
2014-06-15 18:10:20 +02:00
#windows a {
color: inherit;
transition: all .2s;
}
#windows a:hover {
color: #00c165;
text-decoration: none;
}
#windows h1,
#windows h2 {
color: #2c3e50;
font: 300 48px Lato, sans-serif;
2014-06-23 19:28:36 +02:00
line-height: 1.4;
margin-bottom: 16px;
2014-06-15 18:10:20 +02:00
}
2014-06-23 10:40:39 +02:00
#windows h2,
#windows h3 {
2014-06-15 18:10:20 +02:00
color: #7f8c8d;
font-size: 26px;
}
#windows h3 {
2014-06-23 10:40:39 +02:00
border-bottom: 1px solid #eee;
font-weight: 300;
margin-bottom: 10px;
padding-bottom: 7px;
}
#windows h4 {
2014-06-15 18:10:20 +02:00
color: #95a5a6;
font-size: 18px;
font-weight: normal;
2014-06-23 19:28:36 +02:00
margin-top: 0;
2014-06-23 10:40:39 +02:00
margin-bottom: 10px;
2014-06-15 18:10:20 +02:00
}
2014-06-23 10:40:39 +02:00
#windows form {
margin: 0 0;
max-width: 250px;
}
2014-06-23 19:28:36 +02:00
#windows .btn {
margin-top: 8px;
}
2014-06-23 10:40:39 +02:00
#windows .input {
2014-06-15 18:10:20 +02:00
border: 2px solid #e9ecef;
border-radius: 4px;
2014-06-23 10:40:39 +02:00
color: #95a5a6;
2014-06-23 19:28:36 +02:00
font-size: 18px;
2014-06-23 10:40:39 +02:00
margin-bottom: 16px;
2014-06-15 18:10:20 +02:00
outline: 0;
2014-06-23 19:28:36 +02:00
padding: 8px 10px;
2014-06-15 18:10:20 +02:00
transition: border-color .2s;
-webkit-appearance: none;
width: 100%;
}
2014-06-23 10:40:39 +02:00
#windows .input:hover,
#windows .input:focus {
border-color: #bdc3c7;
2014-06-22 22:11:03 +02:00
}
2014-06-22 23:54:15 +02:00
#windows .window {
padding: 12% 0;
overflow: auto;
2014-06-23 21:01:28 +02:00
-webkit-overflow-scrolling: touch;
2014-06-22 23:54:15 +02:00
}
#settings section {
margin-top: 20px;
}
#settings button:hover {
opacity: 0.85;
}
#settings button:active {
opacity: 0.70;
}
#settings .options {
overflow: hidden;
margin: 0 -10px;
}
#settings .opt {
float: left;
margin: 10px 20px;
width: 180px;
}
#settings .opt input {
float: left;
margin-top: 4px;
margin-right: 10px;
}
#settings .opt.wide {
width: 400px;
}
#settings .octicon {
float: left;
margin-top: 3px;
margin-right: 8px;
}
#settings #notification {
color: #7f8c8d;
2014-06-15 18:10:20 +02:00
}
2014-05-28 22:57:39 +02:00
#chat {
font: 13px "Consolas", monospace;
2014-05-30 02:23:23 +02:00
line-height: 1.3em;
2014-05-14 00:47:35 +02:00
}
2014-05-28 22:57:39 +02:00
#chat a {
color: #33b0f7;
word-break: normal;
2014-05-02 19:46:18 +02:00
}
2014-05-28 22:57:39 +02:00
#chat a:hover {
opacity: .6;
2014-05-02 19:46:18 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .chat {
2014-05-30 02:23:23 +02:00
background: #fff;
border-bottom: 1px solid #eee;
2014-05-25 22:46:54 +02:00
bottom: 35px;
2014-06-20 01:11:53 +02:00
box-shadow: inset 180px 0 #f9f9f9;
2014-05-28 22:57:39 +02:00
left: 0;
2014-05-30 23:31:47 +02:00
overflow-y: auto;
-webkit-overflow-scrolling: touch;
2014-05-25 22:46:54 +02:00
position: absolute;
2014-06-09 21:45:38 +02:00
right: 180px;
2014-05-25 22:46:54 +02:00
top: 0;
}
2014-06-02 23:08:03 +02:00
#chat .show-more {
2014-06-09 21:39:19 +02:00
background: #fff;
2014-06-02 23:08:03 +02:00
border-bottom: 1px solid #eee;
color: #bec5d0;
font: 12px Lato, sans-serif;
2014-06-09 21:39:19 +02:00
line-height: 40px;
height: 40px;
2014-06-02 23:08:03 +02:00
text-align: center;
text-transform: uppercase;
width: 100%;
word-spacing: 2px;
}
#chat .show-more:hover {
color: #33b0f7;
}
#chat .show-more:disabled {
2014-06-06 22:05:47 +02:00
display: none;
2014-06-02 23:08:03 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .messages {
2014-05-30 02:23:23 +02:00
display: table;
2014-06-23 21:01:28 +02:00
margin: 3px 0;
width: 100%;
2014-05-25 22:46:54 +02:00
}
2014-05-30 02:23:23 +02:00
#chat .row {
display: table-row;
2014-05-28 22:57:39 +02:00
word-wrap: break-word;
2014-05-02 19:46:18 +02:00
}
2014-05-30 02:23:23 +02:00
#chat .row span {
display: table-cell;
padding-top: 2px;
2014-05-30 03:01:20 +02:00
padding-bottom: 2px;
}
2014-05-30 02:23:23 +02:00
#chat .row:hover .time {
2014-05-28 22:57:39 +02:00
color: #aaa;
2014-04-22 19:57:16 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .from {
padding-right: 10px;
text-align: right;
2014-06-20 01:11:53 +02:00
width: 134px;
2014-05-02 23:54:31 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .text {
padding-left: 10px;
2014-06-20 03:33:49 +02:00
padding-right: 5px;
2014-05-28 22:57:39 +02:00
}
#chat .text a {
word-break: break-all;
2014-05-23 01:14:01 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .type {
color: #bbb;
}
#chat .action .type,
2014-06-13 13:22:03 +02:00
#chat .error .type,
2014-05-28 22:57:39 +02:00
#chat .highlight .type,
#chat .motd .type,
#chat .normal .type,
#chat .notice .type {
display: none;
2014-05-02 23:54:31 +02:00
}
2014-05-03 21:22:14 +02:00
#chat .action,
#chat .action .user {
color: #f39c12;
}
#chat .action .user:before {
content: '* ';
}
2014-06-13 13:22:03 +02:00
#chat .error,
#chat .error .from a,
2014-05-28 22:57:39 +02:00
#chat .highlight,
#chat .highlight .from a {
color: #f00;
2014-05-03 01:35:51 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .time {
color: #ddd;
2014-06-20 01:11:53 +02:00
text-align: right;
width: 46px;
2014-05-28 22:57:39 +02:00
}
2014-06-20 02:26:48 +02:00
#chat .motd {
opacity: 0;
position: absolute;
}
#chat .motd-toggle .motd {
opacity: 1;
position: inherit;
}
2014-06-22 23:54:15 +02:00
#chat.hide-join .join,
#chat.hide-nick .nick,
#chat.hide-part .nick,
#chat.hide-mode .mode,
#chat.hide-quit .quit {
display: none;
}
2014-06-20 02:26:48 +02:00
#chat .toggle {
background: #f9f9f9;
border: 1px solid #eee;
border-radius: 2px;
color: #999;
float: left;
font-size: 14px;
line-height: 0px;
margin: 2px 9px 0 0;
overflow: hidden;
}
#chat .toggle:hover {
border-color: #ddd;
}
#chat .toggle .tri {
border: 3px solid transparent;
border-top-color: #666;
float: left;
margin: 5px 4px 1px;
}
#chat .toggle.open .tri {
border-top-color: transparent;
border-bottom-color: #666;
margin: 1px 4px 5px;
}
2014-05-30 02:23:23 +02:00
#chat .sidebar {
bottom: 0;
2014-05-30 23:31:47 +02:00
display: none;
2014-05-30 02:23:23 +02:00
position: absolute;
right: 0;
2014-06-09 21:45:38 +02:00
width: 180px;
2014-05-30 02:23:23 +02:00
top: 0;
}
2014-05-30 23:31:47 +02:00
#chat .active .sidebar {
display: block;
}
2014-06-09 21:39:19 +02:00
#chat .sidebar .meta {
2014-05-28 22:57:39 +02:00
border: 1px solid #eee;
border-width: 0 0 1px 1px;
color: #ccc;
height: 80px;
2014-05-30 02:23:23 +02:00
padding: 25px 0 0 21px;
width: 100%;
2014-05-03 01:35:51 +02:00
}
2014-06-09 21:39:19 +02:00
#chat .sidebar .meta h1 {
2014-05-28 22:57:39 +02:00
color: #222;
font-size: 15px;
2014-05-02 23:54:31 +02:00
}
2014-06-09 21:39:19 +02:00
#chat .sidebar .meta .type {
2014-05-28 22:57:39 +02:00
text-transform: capitalize;
2014-05-03 01:35:51 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .users {
border-left: 1px solid #eee;
bottom: 0;
line-height: 1.6em;
overflow-y: auto;
2014-05-30 23:31:47 +02:00
-webkit-overflow-scrolling: touch;
2014-05-28 22:57:39 +02:00
padding: 15px 20px;
position: absolute;
top: 80px;
2014-05-30 02:23:23 +02:00
width: 100%;
2014-05-03 01:35:51 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .users li {
display: table-row;
2014-05-03 01:35:51 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .users li a {
display: table-cell;
2014-05-03 01:35:51 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .form {
bottom: 0;
height: 35px;
left: 0;
position: absolute;
2014-06-09 21:45:38 +02:00
right: 180px;
2014-04-22 19:57:16 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .form .hint {
color: #bbb;
2014-05-25 22:46:54 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .form .input {
border: none;
height: 35px;
outline: 0;
padding: 0 10px;
width: 100%;
2014-04-30 17:14:22 +02:00
}
2014-05-28 22:57:39 +02:00
#chat .form .submit {
margin-left: -999px;
position: absolute;
2014-04-22 19:57:16 +02:00
}
2014-05-30 02:23:23 +02:00
@media (max-width: 768px) {
#viewport.lt {
2014-06-09 21:39:19 +02:00
-webkit-transform: translate3d(220px, 0, 0);
transform: translate3d(220px, 0, 0);
2014-05-30 02:23:23 +02:00
}
#viewport.rt {
2014-06-09 21:45:38 +02:00
-webkit-transform: translate3d(-180px, 0, 0);
transform: translate3d(-180px, 0, 0);
2014-05-30 02:23:23 +02:00
}
#sidebar {
2014-06-09 21:39:19 +02:00
margin-left: -220px;
2014-05-30 02:23:23 +02:00
}
#main {
left: 0;
}
#chat .lobby .rt,
#chat .query .rt {
display: none;
}
#chat .header {
display: block;
}
#chat .chat {
box-shadow: none;
}
#chat .chat,
#chat .form {
right: 0;
}
#chat .sidebar {
2014-06-09 21:45:38 +02:00
margin-right: -180px;
2014-06-23 21:01:28 +02:00
top: -40px;
2014-05-30 02:23:23 +02:00
}
#chat .messages {
display: block;
2014-06-24 15:06:37 +02:00
padding: 0px 10px;
2014-05-30 02:23:23 +02:00
}
#chat .row {
display: block;
padding: 2px 0;
}
#chat .row span {
display: inline;
padding: 0;
}
#chat .row .time {
display: none;
}
2014-06-23 21:01:28 +02:00
#header {
display: block;
}
#windows,
#chat {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 40px;
}
#windows .window {
padding-top: 6%;
}
2014-05-30 02:23:23 +02:00
}
2014-06-21 21:39:51 +02:00
@media (max-device-width: 767px) {
#chat .header .rt,
#chat .header .lt {
2014-06-22 22:11:03 +02:00
top: 4px;
2014-06-21 21:39:51 +02:00
}
}