summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2014-03-27 13:52:06 +0100
committerKevin Chabowski <kevin@kch42.de>2014-03-27 23:51:07 +0100
commita21ee0a20ba0e49a4a565400412a0e0194c8e3b1 (patch)
treed745594649fa16230ad50924ede9f1b166b14fec /static
parent7206812e266df8d57cd6628e22b9049b6517ebb8 (diff)
downloadsimplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.tar.gz
simplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.tar.bz2
simplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.zip
Some nice styling!
Diffstat (limited to 'static')
-rw-r--r--static/style.css73
1 files changed, 72 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css
index 00fe4a4..b08bef5 100644
--- a/static/style.css
+++ b/static/style.css
@@ -19,8 +19,79 @@
display: table-cell;
padding-right: 1ex;
font-weight: bold;
+ text-align: right;
}
#chatlog li .msg {
display: table-cell;
-} \ No newline at end of file
+}
+
+#chatlog li.leave, #chatlog li.join {
+ color: gray !important;
+ font-style: italic !important;
+}
+
+h1 {
+ text-align: center;
+ font-weight: bold;
+ font-size: 18pt;
+ margin: 0;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ border-bottom: 1px solid #28f;
+ height: 8mm;
+ background: white;
+}
+
+#buddiescontainer {
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 35mm;
+ margin: 10mm 0 12mm 0;
+}
+
+#buddiescontainer h2 {
+ font-weight: bold;
+ font-size: 12pt;
+}
+
+#buddies {
+ margin: 0;
+ padding: 0;
+}
+#buddies li {
+ margin: 0;
+ padding: 0;
+}
+
+#chatlog {
+ margin: 10mm 40mm 12mm 0;
+}
+
+#chatinput {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 10mm;
+ border-top: 1px solid #28f;
+}
+
+#chatinput input {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 20mm;
+ bottom: 0;
+}
+
+#chatinput button {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ height: 8mm;
+ width: calc(100% - 25mm);
+}