thelounge/client/css/style.css
2014-06-26 09:14:45 -07:00

281 lines
4.3 KiB
CSS

@import url(
http://fonts.googleapis.com/css?family=Lato:300,400,700
);
@font-face {
font-family: "Octicons";
src: url("fonts/octicons.woff") format("woff");
}
html,
body {
height: 100%;
}
body {
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;
}
#sidebar {
bottom: 0;
background: #262c36;
left: 0;
padding-bottom: 60px;
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;
}
#channels {
max-height: 100%;
overflow: auto;
padding: 30px 40px;
}
#channels .network + .network {
margin-top: 30px;
}
#channels .chan {
display: block;
margin: 1px -10px;
padding: 6px 10px 8px;
position: relative;
text-align: left;
transition: background .1s, color 5s;
width: 160px;
}
#channels .chan:first-child {
color: #84d1ff;
font-size: 15px;
font-weight: bold;
}
#channels .badge {
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;
}
#footer {
bottom: 0;
height: 80px;
line-height: 80px;
position: absolute;
text-align: center;
width: 100%;
}
#footer button {
font: 18px Octicons;
padding: 8px 12px;
}
#connect:before {
content: "\f085";
}
#settings:before {
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 {
bottom: 0;
position: absolute;
top: 0px;
width: 100%;
}
#chat {
font: 13px Consolas, monospace;
height: 100%;
position: relative;
width: 100%;
}
#chat form {
bottom: 0;
height: 40px;
left: 0;
position: absolute;
right: 180px;
}
#chat button:hover {
opacity: .6;
}
#chat .chat {
bottom: 40px;
left: 0;
position: absolute;
overflow: auto;
right: 180px;
top: 0;
}
#chat .sidebar {
background: #fff;
border-left: 1px solid #e9ecef;
bottom: 0;
position: absolute;
right: 0;
top: 0;
width: 180px;
z-index: 1;
}
#messages {
display: table;
height: 100%;
width: 100%;
}
#messages .msg {
display: table-row;
word-wrap: break-word;
}
#messages .msg:last-child {
height: 100%;
}
#messages .msg:last-child .text {
padding-bottom: 5px;
}
#messages .time,
#messages .from,
#messages .text {
display: table-cell;
padding: 5px 0 0;
}
#messages .time {
background: #f9f9f9;
color: #ddd;
text-align: right;
width: 46px;
}
#messages .from {
background: #f9f9f9;
color: #33b0f7;
padding-right: 10px;
text-align: right;
width: 134px;
}
#messages .text {
padding-left: 10px;
padding-right: 6px;
}
#messages .type {
color: #ccc;
}
#meta {
border-bottom: 1px solid #e9ecef;
height: 80px;
padding: 25px 0 0 20px;
}
#meta h1 {
color: #222;
font-size: 15px;
}
#meta .count {
color: #ccc;
}
#users {
bottom: 0;
overflow: auto;
padding: 15px 20px;
position: absolute;
top: 80px;
width: 100%;
}
#users button {
display: block;
line-height: 1.6em;
}
#input {
border: 0;
border-top: 1px solid #e9ecef;
height: 100%;
outline: none;
padding: 0 10px;
width: 100%;
}
#submit {
margin-left: -999px;
position: absolute;
}
@media (max-width: 767px) {
#header {
display: block;
}
#windows {
top: 40px;
}
}