Revert fonts

This commit is contained in:
Mattias Erming 2015-04-16 01:07:13 -07:00
parent 62bd6b6f32
commit 71846dbadc
4 changed files with 26 additions and 23 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,21 +1,9 @@
@font-face { @import url("https://fonts.googleapis.com/css?family=Lato:400,700");
font-family: Lato; @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");
src: url("fonts/lato.woff") format("woff");
font-weight: 400;
}
@font-face {
font-family: Lato;
src: url("fonts/lato-black.woff") format("woff");
font-weight: 700;
}
@font-face { @font-face {
font-family: FontAwesome; font-family: FontAwesome;
src: url("fonts/fontawesome.svg") format("svg"), url("fonts/fontawesome.woff") format("woff"); src: url("fonts/fontawesome.svg") format("svg"), url("fonts/fontawesome.woff") format("woff");
} }
@font-face {
font-family: Inconsolata-g;
src: url("fonts/inconsolatag.woff") format("woff"), url("fonts/inconsolatag.ttf") format("ttf");
}
html, html,
body { body {
height: 100%; height: 100%;
@ -458,8 +446,8 @@ button {
} }
#chat, #chat,
#windows .header { #windows .header {
font: 12px Inconsolata-g, monospace; font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
line-height: 1.8; line-height: 1.4;
} }
#chat button:hover { #chat button:hover {
opacity: .6; opacity: .6;
@ -846,7 +834,7 @@ button {
top: 6px; top: 6px;
} }
#form .input { #form .input {
font: 12px Inconsolata-g, monospace; font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
left: 0; left: 0;
height: 34px; height: 34px;
margin-right: 64px; margin-right: 64px;

View File

@ -8,9 +8,14 @@ Author: Aynik
GitHub: https://github.com/aynik GitHub: https://github.com/aynik
*/ */
@font-face {
font-family: Inconsolata-g;
src: url("fonts/inconsolatag.woff") format("woff"), url("fonts/inconsolatag.ttf") format("ttf");
}
body { body {
background: #000; background: #000;
font: 16px Inconsolata-g, monospace; font: 16px Inconsolata-g, monospace;
} }
a, #chat a { a, #chat a {
@ -76,11 +81,11 @@ a:hover, #chat a:hover {
color: #00FF0E; color: #00FF0E;
} }
#sidebar button, #sidebar button,
#sidebar .chan, #sidebar .chan,
#sidebar .sign-out, #sidebar .sign-out,
#chat .time, #chat .time,
#chat .msg .type, #chat .msg .type,
#chat .count:before, #chat .count:before,
#sidebar .empty { #sidebar .empty {
color: #666; color: #666;
@ -90,11 +95,21 @@ a:hover, #chat a:hover {
color: #fff; color: #fff;
} }
#chat,
#windows .header {
font: 12px Inconsolata-g, monospace;
line-height: 1.8;
}
#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 {
font: 12px Inconsolata-g, monospace;
}
#footer .icon { #footer .icon {
color: #666; color: #666;
} }