diff --git a/client/css/fonts/lato-black.woff b/client/css/fonts/lato-black.woff deleted file mode 100644 index c141a2e7..00000000 Binary files a/client/css/fonts/lato-black.woff and /dev/null differ diff --git a/client/css/fonts/lato.woff b/client/css/fonts/lato.woff deleted file mode 100644 index 52074eed..00000000 Binary files a/client/css/fonts/lato.woff and /dev/null differ diff --git a/client/css/style.css b/client/css/style.css index 7582ac9d..327dce7f 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1,21 +1,9 @@ -@font-face { - font-family: Lato; - 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; -} +@import url("https://fonts.googleapis.com/css?family=Lato:400,700"); +@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700"); @font-face { font-family: FontAwesome; 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, body { height: 100%; @@ -458,8 +446,8 @@ button { } #chat, #windows .header { - font: 12px Inconsolata-g, monospace; - line-height: 1.8; + font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace; + line-height: 1.4; } #chat button:hover { opacity: .6; @@ -846,7 +834,7 @@ button { top: 6px; } #form .input { - font: 12px Inconsolata-g, monospace; + font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace; left: 0; height: 34px; margin-right: 64px; diff --git a/client/themes/crypto.css b/client/themes/crypto.css index 88cdc9f8..5fe3c23d 100644 --- a/client/themes/crypto.css +++ b/client/themes/crypto.css @@ -8,9 +8,14 @@ Author: 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 { background: #000; - font: 16px Inconsolata-g, monospace; + font: 16px Inconsolata-g, monospace; } a, #chat a { @@ -76,11 +81,11 @@ a:hover, #chat a:hover { color: #00FF0E; } -#sidebar button, -#sidebar .chan, -#sidebar .sign-out, -#chat .time, -#chat .msg .type, +#sidebar button, +#sidebar .chan, +#sidebar .sign-out, +#chat .time, +#chat .msg .type, #chat .count:before, #sidebar .empty { color: #666; @@ -90,11 +95,21 @@ a:hover, #chat a:hover { color: #fff; } +#chat, +#windows .header { + font: 12px Inconsolata-g, monospace; + line-height: 1.8; +} + #chat.no-colors .from button, #chat.no-colors .sidebar button { color: #000 !important; font-weight: bold } +#form .input { + font: 12px Inconsolata-g, monospace; +} + #footer .icon { color: #666; }