summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2016-03-25 05:19:45 +0100
committerJoe Robinson <joe@lc8n.com>2016-03-25 05:19:45 +0100
commitf5ec8d823e82cb77b31019bc5fd6715042f63f80 (patch)
tree5bafaf6bd9290a9975413499f309d552ebedc6fe /style.css
parent540e7a13de09b08d101f739adce352e9a1cf2c5d (diff)
CSS styles
Diffstat (limited to 'style.css')
-rw-r--r--style.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..15b2c49
--- /dev/null
+++ b/style.css
@@ -0,0 +1,50 @@
+html {
+ height: 100%;
+ box-sizing: border-box;
+}
+*,
+*:before,
+*:after {
+ box-sizing: inherit;
+}
+
+
+body {
+ position: relative;
+ margin: 0;
+ padding-bottom: 6rem;
+ min-height: 100%;
+}
+
+
+.ui.segment.chat {
+ position: absolute;
+ top: 35;
+ padding:10px;
+ bottom:42px;
+ width: 100%;
+ overflow-y: scroll;
+}
+#message {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 2px;
+ background-color: #efefef;
+ text-align: center;
+ width: 100%
+}
+#message-container {
+ margin: 5px;
+ display:block;
+}
+#send-message {
+ padding:5px;
+ width:100%;
+}
+.chat-line {
+ font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
+ font-size: 14px;
+ margin: 0px;
+}