diff options
-rw-r--r-- | style.css | 50 |
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; +} |