From f5ec8d823e82cb77b31019bc5fd6715042f63f80 Mon Sep 17 00:00:00 2001 From: Joe Robinson Date: Fri, 25 Mar 2016 05:19:45 +0100 Subject: CSS styles --- style.css | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 style.css (limited to 'style.css') 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; +} -- cgit v1.2.3