Update css files to confront stylelint rules

This commit is contained in:
Pavel Djundik 2016-02-17 20:38:42 +02:00
parent 4be80ed029
commit ad6b4e8939
5 changed files with 532 additions and 271 deletions

File diff suppressed because it is too large Load Diff

View File

@ -18,12 +18,14 @@ body {
font: 16px Inconsolata-g, monospace; font: 16px Inconsolata-g, monospace;
} }
a, #chat a { a,
color: #00FF0E; #chat a {
color: #00ff0e;
} }
a:hover, #chat a:hover { a:hover,
color: #3EFF48; #chat a:hover {
color: #3eff48;
} }
#windows .window h2 { #windows .window h2 {
@ -33,10 +35,10 @@ a:hover, #chat a:hover {
} }
#main { #main {
right: 0px; right: 0;
bottom: 0px; bottom: 0;
top: 0px; top: 0;
border-radius: 0px; border-radius: 0;
} }
.container { .container {
@ -54,15 +56,17 @@ a:hover, #chat a:hover {
} }
.btn { .btn {
border-color: #00FF0E; border-color: #00ff0e;
color: #00FF0E; color: #00ff0e;
} }
.btn:disabled, .btn:hover { .btn:disabled,
background: #00FF0E; .btn:hover {
background: #00ff0e;
} }
#windows .window:before, #windows .chan:before { #windows .window:before,
#windows .chan:before {
content: none; content: none;
} }
@ -77,7 +81,7 @@ a:hover, #chat a:hover {
} }
#sidebar .chan:first-child { #sidebar .chan:first-child {
color: #00FF0E; color: #00ff0e;
} }
#sidebar button, #sidebar button,
@ -104,9 +108,10 @@ a:hover, #chat a:hover {
top: 48px; top: 48px;
} }
#chat.no-colors .from button, #chat.no-colors .sidebar button { #chat.no-colors .from button,
#chat.no-colors .sidebar button {
color: #000 !important; color: #000 !important;
font-weight: bold font-weight: bold;
} }
#form .input { #form .input {
@ -119,6 +124,6 @@ a:hover, #chat a:hover {
@media (max-width: 768px) { @media (max-width: 768px) {
#main { #main {
left: 0px; left: 0;
} }
} }

View File

@ -3,4 +3,5 @@
*/ */
body { body {
margin: 0;
} }

View File

@ -30,12 +30,14 @@ QUIT #d0907d
#form .input, #form .input,
#chat, #chat,
#windows .header { #windows .header {
font-family: 'Open Sans', sans-serif !important; font-family: "Open Sans", sans-serif !important;
font-size: 13px; font-size: 13px;
} }
#settings, #sign-in, #connect { #settings,
color: #cccccc; #sign-in,
#connect {
color: #ccc;
} }
#chat .count { #chat .count {
@ -43,25 +45,26 @@ QUIT #d0907d
} }
#chat .search { #chat .search {
color: #cccccc; color: #ccc;
padding: 15px 16px; padding: 15px 16px;
} }
#chat .search::-webkit-input-placeholder { #chat .search::-webkit-input-placeholder {
color: #99a2b4; color: #99a2b4;
opacity: 0.5; opacity: .5;
} }
/* Borders */ /* Borders */
#chat .from, #windows .header, #chat .from,
#windows .header,
#chat .user-mode:before, #chat .user-mode:before,
#chat .sidebar { #chat .sidebar {
border-color: #2a323d; border-color: #2a323d;
} }
/* Attach chat to window borders */ /* Attach chat to window borders */
#windows .window:before, #windows .chan:before { #windows .window:before,
#windows .chan:before {
display: none; display: none;
} }
@ -78,7 +81,8 @@ QUIT #d0907d
border-radius: 0; border-radius: 0;
} }
#chat .chat, #chat .sidebar { #chat .chat,
#chat .sidebar {
top: 48px; top: 48px;
} }
@ -115,12 +119,12 @@ QUIT #d0907d
#form #input { #form #input {
background-color: #2e3642; background-color: #2e3642;
border-color: #242a33; border-color: #242a33;
color: #cccccc; color: #ccc;
} }
#form #nick { #form #nick {
background: #242a33; background: #242a33;
color: #CCC; color: #ccc;
} }
/* Buttons */ /* Buttons */
@ -129,16 +133,15 @@ QUIT #d0907d
#windows .header .button { #windows .header .button {
background: #2e3642; background: #2e3642;
border-color: #242a33; border-color: #242a33;
color: #CCC; color: #ccc;
} }
#chat .show-more-button:hover, #chat .show-more-button:hover,
#form #submit:hover, #form #submit:hover,
#windows .header .button:hover { #windows .header .button:hover {
color: #FFF; color: #fff;
} }
#chat .header { #chat .header {
color: #99a2b4; color: #99a2b4;
} }
@ -147,6 +150,7 @@ QUIT #d0907d
#chat .msg { #chat .msg {
color: #f3f3f3; color: #f3f3f3;
} }
#chat .message { #chat .message {
color: #fefefe; color: #fefefe;
} }
@ -179,15 +183,17 @@ QUIT #d0907d
#chat .msg.join .from button { #chat .msg.join .from button {
color: #84ce88 !important; color: #84ce88 !important;
} }
/* Embeds */ /* Embeds */
#chat .toggle-content, #chat .toggle-content,
#chat .toggle-button { #chat .toggle-button {
background: #242a33; background: #242a33;
color: #f3f3f3; color: #f3f3f3;
} }
#chat .toggle-content img { #chat .toggle-content img {
float: left; float: left;
margin-right: 0.5em; margin-right: .5em;
} }
#chat .toggle-content .body { #chat .toggle-content .body {

View File

@ -34,19 +34,25 @@ body {
#form .input, #form .input,
#chat, #chat,
#windows .header { #windows .header {
font-family: 'Open Sans', sans-serif !important; font-family: "Open Sans", sans-serif !important;
font-size: 13px; font-size: 13px;
} }
#settings, #sign-in, #connect { #settings,
#sign-in,
#connect {
color: #dcdccc; color: #dcdccc;
} }
#settings, #sign-in, #connect .title { #settings,
#sign-in,
#connect .title {
color: #88b090; color: #88b090;
} }
#settings, #sign-in, #connect .opt { #settings,
#sign-in,
#connect .opt {
color: #dcdccc; color: #dcdccc;
} }
@ -71,18 +77,20 @@ body {
#chat .search::-webkit-input-placeholder { #chat .search::-webkit-input-placeholder {
color: #d2d39b; color: #d2d39b;
opacity: 0.5; opacity: .5;
} }
/* Borders */ /* Borders */
#chat .from, #windows .header, #chat .from,
#windows .header,
#chat .user-mode:before, #chat .user-mode:before,
#chat .sidebar { #chat .sidebar {
border-color: #333333; border-color: #333;
} }
/* Attach chat to window borders */ /* Attach chat to window borders */
#windows .window:before, #windows .chan:before { #windows .window:before,
#windows .chan:before {
display: none; display: none;
} }
@ -99,7 +107,8 @@ body {
border-radius: 0; border-radius: 0;
} }
#chat .chat, #chat .sidebar { #chat .chat,
#chat .sidebar {
top: 48px; top: 48px;
} }
@ -129,7 +138,7 @@ body {
/* Message form */ /* Message form */
#form { #form {
background: #333333; background: #333;
border-color: #101010; border-color: #101010;
} }
@ -156,10 +165,9 @@ body {
#chat .show-more-button:hover, #chat .show-more-button:hover,
#form #submit:hover, #form #submit:hover,
#windows .header .button:hover { #windows .header .button:hover {
color: #FFF; color: #fff;
} }
#chat .header { #chat .header {
color: #d2d39b; color: #d2d39b;
} }
@ -168,6 +176,7 @@ body {
#chat .msg { #chat .msg {
color: #ffcfaf; color: #ffcfaf;
} }
#chat .message { #chat .message {
color: #dcdccc; color: #dcdccc;
} }
@ -196,15 +205,17 @@ body {
#chat .msg.join .from button { #chat .msg.join .from button {
color: #8cd0d3 !important; color: #8cd0d3 !important;
} }
/* Embeds */ /* Embeds */
#chat .toggle-content, #chat .toggle-content,
#chat .toggle-button { #chat .toggle-button {
background: #93b3a3; background: #93b3a3;
color: #dcdccc; color: #dcdccc;
} }
#chat .toggle-content img { #chat .toggle-content img {
float: left; float: left;
margin-right: 0.5em; margin-right: .5em;
} }
#chat .toggle-content .body { #chat .toggle-content .body {