diff options
Diffstat (limited to 'static/pichat.css')
| -rwxr-xr-x | static/pichat.css | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/static/pichat.css b/static/pichat.css new file mode 100755 index 0000000..383ba7a --- /dev/null +++ b/static/pichat.css @@ -0,0 +1,53 @@ +/* pichat.css */
+
+html, body {
+ padding: 1em;
+}
+
+#content, #chatbox {
+ position: relative;
+}
+
+#messagePane {
+ border: 1px solid green;
+ height: 600px;
+ padding: 5px;
+ position: absolute;
+ width: 540px;
+}
+
+#messageList {
+ height: 575px;
+ width: 540px;
+ overflow-y: auto;
+ overflow-x: hidden;
+ border-bottom: 1px solid grey;
+}
+
+#msgInputDiv {
+ height: 15px;
+}
+
+#msgInput {
+ width: 85%;
+ margin-right: 5px;
+}
+
+#msgSubmit {
+ width: 14%;
+}
+
+.msgDiv {
+ width: 520px;
+}
+
+#userList {
+ overflow: auto;
+ border: 1px solid blue;
+ height: 600px;
+ margin: 0px;
+ position: absolute;
+ padding: 5px;
+ left: 550px;
+ width: 150px;
+}
\ No newline at end of file |
