thelounge/client/css/style.css

360 lines
5.6 KiB
CSS
Raw Normal View History

2014-06-26 18:14:45 +02:00
@import url(
2014-07-07 14:42:46 +02:00
http://fonts.googleapis.com/css?family=Lato:400,700
2014-06-26 18:14:45 +02:00
);
@font-face {
font-family: "Octicons";
src: url("fonts/octicons.woff") format("woff");
}
html,
body {
height: 100%;
}
body {
2014-07-05 01:32:40 +02:00
background: #fff;
2014-06-26 18:14:45 +02:00
color: #222;
font: 16px Lato, sans-serif;
margin: 0;
}
a {
transition: opacity .2s;
}
a:hover {
text-decoration: none;
opacity: .8;
}
h1,
h2 {
font: inherit;
line-height: inherit;
margin: 0;
}
button {
background: 0;
border: none;
color: #33b0f7;
outline: 0;
padding: 0;
}
2014-07-07 02:44:31 +02:00
.container {
margin: 10% auto;
max-width: 480px;
overflow: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 0 30px;
}
2014-06-26 18:14:45 +02:00
#sidebar {
background: #262c36;
2014-06-27 02:47:36 +02:00
bottom: 0;
2014-06-26 18:14:45 +02:00
left: 0;
2014-07-07 02:44:31 +02:00
overflow: hidden;
overflow-y: auto;
2014-07-06 17:22:43 +02:00
-webkit-overflow-scrolling: touch;
2014-06-26 18:14:45 +02:00
position: absolute;
top: 0;
width: 220px;
z-index: 2;
}
#sidebar button {
border: 1px solid transparent;
border-radius: 2px;
color: #7c838d;
font-size: 14px;
}
#sidebar button:hover,
#sidebar .active {
background: #2a303a;
border-color: rgba(255, 255, 255, .025);
}
#sidebar button.active {
background: #323841;
color: #fff;
}
2014-07-07 14:42:46 +02:00
#sidebar .networks {
2014-06-27 02:47:36 +02:00
min-height: 100%;
padding: 30px 40px 80px;
2014-06-26 18:14:45 +02:00
}
2014-07-07 14:42:46 +02:00
#sidebar .network + .network {
2014-06-26 18:14:45 +02:00
margin-top: 30px;
}
2014-07-07 14:42:46 +02:00
#sidebar .chan {
2014-06-26 18:14:45 +02:00
display: block;
margin: 1px -10px;
padding: 6px 10px 8px;
position: relative;
text-align: left;
2014-06-29 21:41:02 +02:00
transition: all .2s;
2014-06-26 18:14:45 +02:00
width: 160px;
}
2014-07-07 14:42:46 +02:00
#sidebar .chan:first-child {
2014-06-26 18:14:45 +02:00
color: #84d1ff;
font-size: 15px;
font-weight: bold;
}
2014-07-07 14:42:46 +02:00
#sidebar .badge {
2014-06-26 18:14:45 +02:00
background: rgba(255, 255, 255, .06);
border-radius: 3px;
color: #afb6c0;
font-size: 10px;
margin-top: 1px;
padding: 3px 6px;
position: absolute;
right: 10px;
transition: all .1s;
}
2014-07-07 14:42:46 +02:00
#sidebar .badge:empty {
2014-06-30 03:20:54 +02:00
display: none;
}
2014-06-26 18:14:45 +02:00
#footer {
height: 80px;
line-height: 80px;
2014-06-27 02:47:36 +02:00
margin-top: -80px;
2014-06-26 18:14:45 +02:00
text-align: center;
2014-06-27 02:47:36 +02:00
width: 220px;
2014-06-26 18:14:45 +02:00
}
#footer button {
font: 18px Octicons;
padding: 8px 12px;
}
2014-07-07 02:44:31 +02:00
#footer #btn-1:before {
2014-06-26 18:14:45 +02:00
content: "\f085";
}
2014-07-07 02:44:31 +02:00
#footer #btn-2:before {
2014-06-26 18:14:45 +02:00
content: "\f02f";
}
#main {
bottom: 0;
left: 220px;
position: absolute;
right: 0;
top: 0;
}
#header {
border-bottom: 1px solid #e9ecef;
display: none;
height: 40px;
position: absolute;
top: 0;
width: 100%;
}
#header h1 {
color: #222;
font-size: 15px;
line-height: 40px;
text-align: center;
}
#header button {
color: #aaa;
font: 24px Octicons;
height: 32px;
opacity: .5;
position: absolute;
top: 4px;
transition: opacity .2s;
width: 32px;
}
#header #lt {
left: 4px;
}
#header #rt {
right: 4px;
}
#header #lt:before,
#header #rt:before {
content: "\f05e";
}
#windows {
2014-07-07 02:44:31 +02:00
bottom: 40px;
2014-06-26 18:14:45 +02:00
position: absolute;
2014-07-07 02:44:31 +02:00
overflow: auto;
2014-06-26 18:14:45 +02:00
top: 0px;
width: 100%;
}
2014-07-07 14:42:46 +02:00
#windows > div,
#windows .chan {
background: #fff;
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
2014-07-07 02:44:31 +02:00
}
2014-06-26 18:14:45 +02:00
#chat {
font: 13px Consolas, monospace;
height: 100%;
position: relative;
width: 100%;
}
#chat button:hover {
opacity: .6;
}
2014-07-07 14:42:46 +02:00
#chat .chat {
2014-07-07 02:44:31 +02:00
bottom: 0;
2014-06-26 18:14:45 +02:00
left: 0;
2014-07-06 17:22:43 +02:00
overflow: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
2014-06-26 18:14:45 +02:00
position: absolute;
right: 180px;
top: 0;
}
#chat .sidebar {
background: #fff;
border-left: 1px solid #e9ecef;
bottom: 0;
position: absolute;
right: 0;
top: 0;
width: 180px;
}
2014-07-07 14:42:46 +02:00
#chat .messages {
2014-06-26 18:14:45 +02:00
display: table;
2014-07-07 02:44:31 +02:00
table-layout: fixed;
2014-06-26 18:14:45 +02:00
height: 100%;
width: 100%;
}
2014-07-07 14:42:46 +02:00
#chat .msg {
2014-06-26 18:14:45 +02:00
display: table-row;
word-wrap: break-word;
}
2014-07-07 14:42:46 +02:00
#chat .msg:last-child {
2014-06-26 18:14:45 +02:00
height: 100%;
}
2014-07-07 14:42:46 +02:00
#chat .msg:last-child .text {
2014-06-26 18:14:45 +02:00
padding-bottom: 5px;
}
2014-07-07 14:42:46 +02:00
#chat .time,
#chat .from,
#chat .text {
2014-06-26 18:14:45 +02:00
display: table-cell;
padding: 5px 0 0;
}
2014-07-07 14:42:46 +02:00
#chat .time {
2014-06-26 18:14:45 +02:00
background: #f9f9f9;
color: #ddd;
text-align: right;
width: 46px;
}
2014-07-07 14:42:46 +02:00
#chat .from {
2014-06-26 18:14:45 +02:00
background: #f9f9f9;
2014-07-03 00:00:11 +02:00
border-right: 1px solid #f4f4f4;
2014-06-30 03:20:54 +02:00
color: #ddd;
2014-06-26 18:14:45 +02:00
padding-right: 10px;
text-align: right;
width: 134px;
}
2014-07-07 14:42:46 +02:00
#chat a,
#chat .from button {
2014-06-30 03:20:54 +02:00
color: #33b0f7;
}
2014-07-07 14:42:46 +02:00
#chat .text {
2014-06-26 18:14:45 +02:00
padding-left: 10px;
padding-right: 6px;
}
2014-07-07 14:42:46 +02:00
#chat .text a {
2014-07-05 02:31:20 +02:00
word-break: break-all;
}
2014-07-07 14:42:46 +02:00
#chat .type {
2014-06-26 18:14:45 +02:00
color: #ccc;
2014-06-30 03:20:54 +02:00
display: none;
}
2014-07-07 14:42:46 +02:00
#chat .join .type,
#chat .part .type,
#chat .mode .type,
#chat .nick .type,
#chat .kick .type,
#chat .quit .type,
#chat .quit .type,
#chat .notice .type,
#chat .topic .type {
2014-06-30 03:20:54 +02:00
display: inline;
2014-06-26 18:14:45 +02:00
}
2014-07-07 14:42:46 +02:00
#chat .meta {
2014-07-05 01:32:40 +02:00
2014-06-26 18:14:45 +02:00
height: 80px;
padding: 25px 0 0 20px;
}
2014-07-07 14:42:46 +02:00
#chat .meta h1 {
2014-06-26 18:14:45 +02:00
color: #222;
font-size: 15px;
}
2014-07-07 14:42:46 +02:00
#chat .meta .type {
2014-07-05 01:32:40 +02:00
color: #ccc;
2014-06-30 03:20:54 +02:00
text-transform: capitalize;
}
2014-07-07 14:42:46 +02:00
#chat .count {
2014-07-05 01:32:40 +02:00
background: #f9f9f9;
border-top: 1px dashed #e9ecef;
border-bottom: 1px solid #e9ecef;
height: 40px;
left: 0;
position: absolute;
right: 0;
top: 80px;
}
2014-07-07 14:42:46 +02:00
#chat .count:before {
2014-07-05 01:32:40 +02:00
color: #eee;
font: 16px Octicons;
content: "\f02e";
position: absolute;
right: 18px;
line-height: 40px;
transition: color .2s;
2014-07-07 14:42:46 +02:00
z-index: -1;
2014-07-05 01:32:40 +02:00
}
2014-07-07 14:42:46 +02:00
#chat .search {
2014-07-05 01:32:40 +02:00
color: #222;
border: 0;
background: none;
font: inherit;
outline: 0;
padding: 12px 20px;
position: relative;
width: 100%;
}
2014-07-07 14:42:46 +02:00
#chat .names {
2014-06-26 18:14:45 +02:00
bottom: 0;
overflow: auto;
2014-07-06 17:22:43 +02:00
-webkit-overflow-scrolling: touch;
2014-06-26 18:14:45 +02:00
padding: 15px 20px;
position: absolute;
2014-07-05 01:32:40 +02:00
top: 120px;
2014-06-26 18:14:45 +02:00
width: 100%;
}
2014-07-07 14:42:46 +02:00
#chat .names button {
2014-06-26 18:14:45 +02:00
display: block;
line-height: 1.6em;
}
2014-06-30 03:20:54 +02:00
#form {
bottom: 0;
height: 40px;
left: 0;
position: absolute;
2014-07-07 02:44:31 +02:00
right: 0px;
2014-06-30 03:20:54 +02:00
}
#form input {
2014-06-26 18:14:45 +02:00
border: 0;
border-top: 1px solid #e9ecef;
2014-07-05 02:31:20 +02:00
font: 13px Consolas, monospace;
2014-06-26 18:14:45 +02:00
height: 100%;
outline: none;
2014-07-05 02:31:20 +02:00
padding: 0 12px;
2014-06-26 18:14:45 +02:00
width: 100%;
}
2014-07-07 02:44:31 +02:00
#form #submit {
height: 0;
margin-left: -9999px;
2014-06-26 18:14:45 +02:00
position: absolute;
2014-07-07 02:44:31 +02:00
width: 0;
2014-06-26 18:14:45 +02:00
}
@media (max-width: 767px) {
#header {
display: block;
}
#windows {
top: 40px;
}
}