diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-11-03 01:10:08 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-11-03 01:10:11 +0100 |
commit | 8cc8853c3c1e5dfd7681bc0c31bc0eb88a4ef959 (patch) | |
tree | 844cb300de80e41aac38a1b481368c6ae6eb6c58 /css | |
parent | 3c5eb7000709606eccd34114e8bf4e851dcacd6a (diff) |
Add room name change event, create new room button, multiple rooms
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/css/style.css b/css/style.css index 65cc83d..7b82820 100644 --- a/css/style.css +++ b/css/style.css @@ -6,13 +6,17 @@ window { background-color: #2f3136; } +dialog { + background-color: #2f3136; +} + entry { caret-color: #f7f7f7; background-color: #444444; border-color: #444444; border-radius: 10px; color: #f7f7f7; - box-shadow: 0px 0px 0px 0px; + box-shadow: none; } label { @@ -39,12 +43,12 @@ scrollbar { button { background-image: none; - background-color: #2f3136; + background-color: #36393e; color: #f7f7f7; border-style: none; outline-style: none; - box-shadow: 0px 0px 0px transparent; - text-shadow: 0px 0px 0px transparent; + box-shadow: none; + text-shadow: none; } .confirm-button { @@ -96,7 +100,7 @@ separator { padding: 10px 10px 10px 10px; } -#current-channel-title { +#current-room-title { color: #f7f7f7; font-size: 20px; font-weight: bold; @@ -123,11 +127,11 @@ separator { font-size: 16px; } -.channel-button { - background-color: transparent; +.room-button { + background: none; } -#users-title { +.users-title { color: #f7f7f7; font-weight: bold; font-size: 16px; @@ -175,6 +179,15 @@ textview text { padding: 2em; } +.image-button { + background-image: none; + background: none; + border-style: none; + outline-style: none; + box-shadow: none; + text-shadow: none; +} + /* #chat-input { border-style: none; |