aboutsummaryrefslogtreecommitdiff
path: root/src/main.css
diff options
context:
space:
mode:
authorcurly <curlybryce@protonmail.com>2023-02-28 10:29:26 -0700
committercurly <curlybryce@protonmail.com>2023-02-28 10:29:26 -0700
commit1f03e7bc160a63d4d57c21bf9ec60e2cd46a382a (patch)
tree9bd65d6de3017eea1ea4f1fba11d23965393024e /src/main.css
parentdee5c88ff4011e233609fa6ccce7f410f9d6eb7a (diff)
downloadrocket_test_ui-1f03e7bc160a63d4d57c21bf9ec60e2cd46a382a.tar.gz
rocket_test_ui-1f03e7bc160a63d4d57c21bf9ec60e2cd46a382a.tar.bz2
rocket_test_ui-1f03e7bc160a63d4d57c21bf9ec60e2cd46a382a.zip
extremely basic ws listening
Diffstat (limited to 'src/main.css')
-rw-r--r--src/main.css43
1 files changed, 41 insertions, 2 deletions
diff --git a/src/main.css b/src/main.css
index 98c2511..1ce0122 100644
--- a/src/main.css
+++ b/src/main.css
@@ -67,7 +67,7 @@
margin: 2px;
}
-#navbar {
+.navbar {
border-bottom: 2px solid black;
width: 100%;
display: inline-block;
@@ -95,7 +95,7 @@
body {
display: flex;
- flex-direction: column;
+ flex-direction: row;
max-height: 100vh;
}
@@ -140,4 +140,43 @@ body {
}
.reply_highlight {
background-color: lightblue;
+}
+
+#channel {
+ display: flex;
+ flex-direction: column;
+ max-height: 100vh;
+ flex-grow: 1;
+ flex-basis: 90vw;
+}
+#rightpane {
+ flex-basis: 20vw;
+ display: none;
+ flex-direction: column;
+ max-width: 20vw;
+ border-left: 2px solid black;
+}
+
+.center {
+ text-align: center;
+}
+
+#leftpane {
+ display: flex;
+ flex-direction: column;
+ flex-basis: 20vw;
+ flex-grow: 0;
+ border-right: 2px solid black;
+}
+#channelsbox {
+ flex-basis: 90vh;
+}
+#usersettings {
+ flex-basis: 15vh;
+ border-top: 2px solid black;
+}
+
+input#username {
+ max-width: 50%;
+ border-bottom: 1px dotted black;
} \ No newline at end of file