From 69b7259571f36bbed3ac9d4e5765f3c521273ab6 Mon Sep 17 00:00:00 2001 From: Luna Date: Fri, 23 Jul 2021 01:05:11 -0700 Subject: [PATCH] Frontend: added more to index.html --- frontend/index.html | 18 +++++++++++++----- frontend/stream.css | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 5 deletions(-) create mode 100644 frontend/stream.css diff --git a/frontend/index.html b/frontend/index.html index b002de1..cbf32f7 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,20 +7,28 @@ - + - - -Login Page + +
+
+

Test Text

+
+ + + +
diff --git a/frontend/stream.css b/frontend/stream.css new file mode 100644 index 0000000..9a3cbe1 --- /dev/null +++ b/frontend/stream.css @@ -0,0 +1,34 @@ +html { + background: #F7A8B8; + text-align: center; + font-family: "Lucida Console", "Courier New", monospace; +} + +body { + margin-top: 3%; +} + +#streamchat { + display: flex; + height: 100%; + max-width: 960px; + margin: 0 auto; + +} + +#stream { + background-color: white; + padding: 5%; + box-shadow: 10px 10px 10px black; + border-radius: 5px; + width: 100%; + height: 100%; + margin-right: 4em; +} + +#chatbox { + width: 100%; + height: 100%; + margin-left: 4em; +} +