2015-04-14 19:13:38 +00:00
|
|
|
/*
|
2016-02-10 05:45:51 +00:00
|
|
|
Crypto theme for The Lounge.
|
2015-04-14 19:13:38 +00:00
|
|
|
|
|
|
|
Installation instructions can be found here
|
2016-02-10 05:45:51 +00:00
|
|
|
https://thelounge.github.io/docs/server/configuration.html#theme
|
2015-04-14 19:13:38 +00:00
|
|
|
|
|
|
|
Author: Aynik
|
|
|
|
GitHub: https://github.com/aynik
|
|
|
|
*/
|
|
|
|
|
2015-04-16 08:07:13 +00:00
|
|
|
@font-face {
|
2016-02-17 18:38:42 +00:00
|
|
|
font-family: Inconsolata-g;
|
2016-10-09 09:05:42 +00:00
|
|
|
src: url("../css/fonts/inconsolatag.woff") format("woff");
|
2015-04-16 08:07:13 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
body {
|
2016-02-17 18:38:42 +00:00
|
|
|
background: #000;
|
|
|
|
font: 16px Inconsolata-g, monospace;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 18:38:42 +00:00
|
|
|
a,
|
|
|
|
#chat a {
|
|
|
|
color: #00ff0e;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 18:38:42 +00:00
|
|
|
a:hover,
|
|
|
|
#chat a:hover {
|
|
|
|
color: #3eff48;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#windows .window h2 {
|
2016-02-17 18:38:42 +00:00
|
|
|
color: #666;
|
2016-08-14 21:28:47 +00:00
|
|
|
font: regular 14px Lato, sans-serif;
|
2016-02-17 18:38:42 +00:00
|
|
|
border-bottom: none;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 19:32:17 +00:00
|
|
|
.container {
|
2016-02-17 18:38:42 +00:00
|
|
|
margin: 40px auto;
|
2015-04-14 19:32:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
#sign-in label {
|
2016-02-17 18:38:42 +00:00
|
|
|
font: 14px Lato, sans-serif;
|
|
|
|
color: #666;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sign-in label input {
|
2016-02-17 18:38:42 +00:00
|
|
|
margin-top: 10px !important;
|
2016-08-14 21:28:47 +00:00
|
|
|
font-size: 14px;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
2016-02-17 18:38:42 +00:00
|
|
|
border-color: #00ff0e;
|
|
|
|
color: #00ff0e;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 18:38:42 +00:00
|
|
|
.btn:disabled,
|
|
|
|
.btn:hover {
|
|
|
|
background: #00ff0e;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 06:27:56 +00:00
|
|
|
.btn-reconnect {
|
|
|
|
background: #f00;
|
|
|
|
color: #fff;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
#settings .opt {
|
2016-02-17 18:38:42 +00:00
|
|
|
line-height: 20px;
|
|
|
|
font-size: 12px;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sign-in .remember {
|
2016-08-14 21:28:47 +00:00
|
|
|
font-size: 12px;
|
2016-02-17 18:38:42 +00:00
|
|
|
line-height: 30px;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .chan:first-child {
|
2016-02-17 18:38:42 +00:00
|
|
|
color: #00ff0e;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-25 07:29:51 +00:00
|
|
|
#sidebar .chan .name:after {
|
|
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
|
|
}
|
|
|
|
|
2015-04-16 08:07:13 +00:00
|
|
|
#sidebar button,
|
|
|
|
#sidebar .chan,
|
|
|
|
#sidebar .sign-out,
|
|
|
|
#chat .time,
|
2015-04-14 19:13:38 +00:00
|
|
|
#chat .count:before,
|
|
|
|
#sidebar .empty {
|
2016-02-17 18:38:42 +00:00
|
|
|
color: #666;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 18:46:00 +00:00
|
|
|
#chat .unhandled .from {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
#sidebar .active {
|
2016-02-17 18:38:42 +00:00
|
|
|
color: #fff;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-08-14 21:28:47 +00:00
|
|
|
#windows .header .topic,
|
|
|
|
.messages .msg,
|
|
|
|
.sidebar {
|
2016-02-17 18:38:42 +00:00
|
|
|
font: 12px Inconsolata-g, monospace;
|
|
|
|
line-height: 1.8;
|
2015-04-16 08:07:13 +00:00
|
|
|
}
|
|
|
|
|
2016-05-15 19:56:48 +00:00
|
|
|
#chat .user {
|
|
|
|
color: black;
|
2016-02-17 18:38:42 +00:00
|
|
|
font-weight: bold;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-07-31 21:50:42 +00:00
|
|
|
#windows #form .input {
|
2016-08-14 21:28:47 +00:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 12px;
|
2015-04-16 08:07:13 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 05:43:46 +00:00
|
|
|
#windows select.input {
|
|
|
|
height: 38px;
|
|
|
|
}
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
#footer .icon {
|
2016-02-17 18:38:42 +00:00
|
|
|
color: #666;
|
2015-04-14 19:13:38 +00:00
|
|
|
}
|
|
|
|
|
2016-08-03 05:11:10 +00:00
|
|
|
.tooltipped:after {
|
|
|
|
font-family: Inconsolata-g, monospace;
|
|
|
|
}
|