summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2014-03-27 12:28:05 +0100
committerKevin Chabowski <kevin@kch42.de>2014-03-27 23:51:07 +0100
commitdfd11c94c1ad5261caa43128a39fcce550edf61d (patch)
treeb80458e610077b17da9815d14f71f590d4de56af /static/style.css
parentc35e43e9cf0f915236016a3f73a6ee6bc9962e0b (diff)
downloadsimplechat-dfd11c94c1ad5261caa43128a39fcce550edf61d.tar.gz
simplechat-dfd11c94c1ad5261caa43128a39fcce550edf61d.tar.bz2
simplechat-dfd11c94c1ad5261caa43128a39fcce550edf61d.zip
Chat now works on the client side
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..00fe4a4
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,26 @@
+* {
+ font-family: sans-serif;
+}
+
+#chatlog {
+ display: table;
+ list-style: none;
+ margin: 0;
+ padding: 0
+}
+
+#chatlog li {
+ display: table-row;
+ margin: 0;
+ padding: 0;
+}
+
+#chatlog li .nick {
+ display: table-cell;
+ padding-right: 1ex;
+ font-weight: bold;
+}
+
+#chatlog li .msg {
+ display: table-cell;
+} \ No newline at end of file