thelounge/client/themes/morning.css

210 lines
2.7 KiB
CSS
Raw Normal View History

2014-11-03 20:17:39 +01:00
/*
Morning theme for The Lounge.
Has a bit more eye-friendly color scheme.
2014-11-03 20:17:39 +01:00
Installation instructions can be found here
https://thelounge.github.io/docs/server/configuration.html#theme
2014-11-03 20:17:39 +01:00
Author: Riku Rouvila
GitHub: https://github.com/rikukissa
*/
/*
BACKGROUND #333c4a
INPUT BACKGROUND #2e3642
PRIMARY #fefefe
SECONDARY #99a2b4
BORDERS #2a323d
QUIT #d0907d
*/
#main,
#chat .sidebar,
#windows .chan,
#windows .window {
background: #333c4a;
2014-11-03 20:17:39 +01:00
}
#main #chat,
#main #form,
#form .input,
#chat,
#windows .header {
font-family: "Open Sans", sans-serif !important;
font-size: 13px;
2014-11-03 20:17:39 +01:00
}
#settings,
#sign-in,
#connect {
color: #ccc;
2014-11-03 20:17:39 +01:00
}
#chat .count {
background-color: #2e3642;
2014-11-03 20:17:39 +01:00
}
#chat .search {
color: #ccc;
padding: 15px 16px;
2014-11-03 20:17:39 +01:00
}
#chat .search::-webkit-input-placeholder {
color: #99a2b4;
opacity: .5;
2014-11-03 20:17:39 +01:00
}
/* Borders */
#chat .from,
#windows .header,
2014-11-03 20:17:39 +01:00
#chat .user-mode:before,
#chat .sidebar {
border-color: #2a323d;
2014-11-03 20:17:39 +01:00
}
/* Attach chat to window borders */
#windows .window:before,
#windows .chan:before {
display: none;
2014-11-03 20:17:39 +01:00
}
#footer {
left: 0;
bottom: 0;
width: 220px;
2014-11-03 20:17:39 +01:00
}
#main {
top: 0;
bottom: 0;
right: 0;
border-radius: 0;
2014-11-03 20:17:39 +01:00
}
#chat .chat,
#chat .sidebar {
top: 48px;
2014-11-03 20:17:39 +01:00
}
/* User list */
#chat .user-mode {
color: #fefefe;
2014-11-03 20:17:39 +01:00
}
/* Nicknames */
#chat.no-colors .from .user,
2016-05-11 01:17:52 +02:00
#chat.no-colors .text .user,
#chat.no-colors .sidebar .user {
color: #b0bacf !important;
2014-11-03 20:17:39 +01:00
}
#chat.no-colors .from .user:hover,
2016-05-11 01:17:52 +02:00
#chat.no-colors .text .user:hover,
#chat.no-colors .sidebar .user:hover {
color: #fefefe !important;
2014-11-03 20:17:39 +01:00
}
#chat a {
color: #428bca;
2014-11-03 20:17:39 +01:00
}
#chat button:hover {
opacity: 1;
2014-11-03 20:17:39 +01:00
}
/* Message form */
#form {
background: #2a323d;
border-color: #242a33;
2014-11-03 20:17:39 +01:00
}
#form #input {
background-color: #2e3642;
border-color: #242a33;
color: #ccc;
2014-11-03 20:17:39 +01:00
}
#form #nick {
background: #242a33;
color: #ccc;
}
#form #submit:hover {
opacity: 1;
}
/* Buttons */
#chat .show-more-button {
background: #2e3642;
border-color: #242a33;
color: #ccc;
}
#chat .show-more-button:hover {
color: #fff;
2014-11-03 20:17:39 +01:00
}
#chat .header {
color: #99a2b4;
2014-11-03 20:17:39 +01:00
}
/* Setup text colors */
#chat .msg {
color: #f3f3f3;
2014-11-03 20:17:39 +01:00
}
2014-11-03 20:17:39 +01:00
#chat .message {
color: #fefefe;
2014-11-03 20:17:39 +01:00
}
#chat .self .text {
color: #99a2b4;
2014-11-03 20:17:39 +01:00
}
#chat .error,
#chat .error .from,
#chat .highlight,
#chat .highlight .from {
color: #f92772;
2014-11-03 20:17:39 +01:00
}
#chat .msg.quit .time,
2016-01-23 15:39:54 +01:00
#chat .msg.quit .from button {
color: #d0907d !important;
2014-11-03 20:17:39 +01:00
}
#chat .msg.topic {
color: #fefefe;
2014-11-03 20:17:39 +01:00
}
#chat .msg.join .time,
2016-01-23 15:39:54 +01:00
#chat .msg.join .from button {
color: #84ce88 !important;
2014-11-03 20:17:39 +01:00
}
2014-11-03 20:17:39 +01:00
/* Embeds */
#chat .toggle-content,
#chat .toggle-button {
background: #242a33;
color: #f3f3f3;
2014-11-03 20:17:39 +01:00
}
2014-11-03 20:17:39 +01:00
#chat .toggle-content img {
float: left;
margin-right: .5em;
2014-11-03 20:17:39 +01:00
}
#chat .toggle-content .body {
color: #99a2b4;
2014-11-03 20:17:39 +01:00
}
@media (max-width: 768px) {
#main {
left: 0;
}
#footer {
left: -220px;
width: 225px;
}
}