aboutsummaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-25 16:19:49 +0200
committerdec05eba <dec05eba@protonmail.com>2018-10-25 16:19:49 +0200
commit9096d6ef3710118f98c46f6e7f7689d5aa11c7f4 (patch)
tree3fe958d79d2771cd8ee26863486eb3dedc1b4b49 /css
parentc50ef935e0792eeb0256ddf5df87af015f3ae1d8 (diff)
Initial commit
Diffstat (limited to 'css')
-rw-r--r--css/style.css119
1 files changed, 119 insertions, 0 deletions
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