From 1d5c0abdfc015521bcde6517b919b7e1925eaa3e Mon Sep 17 00:00:00 2001 From: Jérémie Astori Date: Wed, 11 Apr 2018 00:37:53 -0400 Subject: Port crypto.css from The Lounge core codebase to this repo --- crypto.css | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 crypto.css diff --git a/crypto.css b/crypto.css new file mode 100644 index 0000000..1559c5f --- /dev/null +++ b/crypto.css @@ -0,0 +1,115 @@ +/* +Crypto theme for The Lounge. + +Installation instructions can be found here +https://thelounge.chat/docs/server/configuration.html#theme + +Author: Aynik +GitHub: https://github.com/aynik +*/ + +body { + background: #000; + font: 16px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace; +} + +a, +#chat a { + color: #00ff0e; +} + +a:hover, +#chat a:hover { + color: #3eff48; +} + +#windows .window h2, +#windows .window h3 { + color: #666; +} + +#windows .window h2 { + border-bottom: none; +} + +.container { + margin: 40px auto; +} + +#sign-in label { + color: #666; +} + +#sign-in label input { + margin-top: 10px !important; + font-size: 14px; +} + +.btn { + border-color: #00ff0e; + color: #00ff0e; +} + +.btn:disabled, +.btn:hover { + background: #00ff0e; +} + +#connection-error { + background: #f00; +} + +#settings .opt { + line-height: 20px; + font-size: 12px; +} + +#sidebar .chan.lobby { + color: #00ff0e; +} + +#sidebar button, +#sidebar .chan, +#chat .time, +#chat .count::before, +#sidebar .empty { + color: #666; +} + +#chat .unhandled .from { + color: #ddd; +} + +#sidebar .active { + color: #fff; +} + +#windows .header .topic, +.messages .msg, +.userlist { + line-height: 1.8; +} + +#chat .user { + color: black; + font-weight: bold; +} + +#windows #form .input { + font-family: inherit; + font-size: 12px; +} + +#windows select.input { + height: 38px; +} + +#footer .icon { + color: #666; +} + +/* Previews */ + +#chat .toggle-text { + line-height: initial; +} -- cgit v1.2.3