From 9096d6ef3710118f98c46f6e7f7689d5aa11c7f4 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 25 Oct 2018 16:19:49 +0200 Subject: Initial commit --- css/style.css | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 css/style.css (limited to 'css') diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..d07b4c4 --- /dev/null +++ b/css/style.css @@ -0,0 +1,119 @@ +window { + background-color: #2f3136; +} + +entry { + caret-color: #f7f7f7; + background-color: #444444; + border-color: #444444; + border-radius: 10px; + color: #f7f7f7; + box-shadow: 0px 0px 0px 0px; +} + +label { + color: #f7f7f7; +} + +button { + background-image: none; + background-color: #2f3136; + color: #f7f7f7; + border-style: none; +} + +#side-panels separator { + border: 1px solid #2f3136; +} + +#top-bar { + background-color: #36393e; + box-shadow: 0px 0px 5px #1d1d1d; + padding: 10px 10px 10px 10px; +} + +#current-channel-title { + color: #f7f7f7; + font-size: 20px; + font-weight: bold; +} + +#left-panel { + background-color: #36393e; + padding: 10px 10px 10px 10px; + border: 1px solid #36393e; + /* + margin-right: 20px; + box-shadow: 0px 0px 5px #1d1d1d; + */ +} + +#channels-title { + color: #f7f7f7; + font-weight: bold; + font-size: 16px; +} + +#users-title { + color: #f7f7f7; + font-weight: bold; + font-size: 16px; +} + +#chat-panel { + background-color: #444444; +} + +#chat-area-layout { + margin-top: 10px; + margin-bottom: 10px; +} + +.chat-message { + color: white; + background-color: #36393e; + padding: 15px 15px 15px 15px; + margin: 10px 20px 10px 20px; + box-shadow: 0px 0px 5px #1d1d1d; +} + +.chat-message-username { + color: #0fc0fc; +} + +textview { + caret-color: #f7f7f7; +} + +textview text { + background-color: #444444; + color: #f7f7f7; +} + +.login-window { + background-color: #36393e; + border: 5px solid #36393e; + border-radius: 7px; + padding: 2em; +} + +/* +#chat-input { + border-style: none; + caret-color: #f7f7f7; +} + +#chat-input selection { + background-color: red; +} +*/ + +#chat-scroll-view { + background-color: #444444; + /*padding: 10px 10px 10px 10px;*/ +} +/* +#chat-input { + padding: 10px 10px 10px 10px; +} +*/ \ No newline at end of file -- cgit v1.2.3