From 2d38e4744d87629199dbf149980eb8bea35de549 Mon Sep 17 00:00:00 2001 From: jsrobson10 Date: Sat, 13 Apr 2019 14:40:31 +1000 Subject: [PATCH] Got a nice-ish looking text box --- scripts/profiles.js | 6 ++++-- style.css | 13 +++++++++++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/scripts/profiles.js b/scripts/profiles.js index f151392..e1b6ec9 100644 --- a/scripts/profiles.js +++ b/scripts/profiles.js @@ -157,8 +157,10 @@ function chat_switch_to(id) // Set the HTML document.getElementById("chat-area").innerHTML = "\
\ - \ - \ +
\ + \ + \ +
\ "; // Set the title diff --git a/style.css b/style.css index 940539a..281654b 100644 --- a/style.css +++ b/style.css @@ -16,7 +16,7 @@ top: 0; bottom: 0; right: 0; - width: 100px; + width: 120px; background-color: #BBB; } @@ -55,5 +55,14 @@ }*/ #chat-area { - padding-left: 100px; + padding: 0 100px; +} + +.chat-content-send { + position: fixed; + left: 340px; + right: 120px; + bottom: 0; + padding: 12px; + background-color: #CCD; }