From 91050f35eb3a8110b28818d1f329f4baaebe5763 Mon Sep 17 00:00:00 2001 From: sweatshirt0 Date: Sat, 4 Feb 2023 15:51:20 -0500 Subject: [PATCH] news div created and styled. Minor css changes.w --- pages/home.html | 4 ++++ styles/styles.css | 35 ++++++++++++++++++++++++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/pages/home.html b/pages/home.html index 88d92ee..59cf327 100644 --- a/pages/home.html +++ b/pages/home.html @@ -25,6 +25,10 @@ +
+

---News---

+

Update 1: Registration is closed until further notice for development; though still mostly functional for the time being. Thank you for your patience.

+
diff --git a/styles/styles.css b/styles/styles.css index ace817c..99d7fa2 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -38,7 +38,7 @@ body { padding-bottom: 15px; border-radius: 5px; background-color: #fff; - box-shadow: 10px 10px 10px lightgrey; + box-shadow: 8px 8px 8px lightgrey; } .username { @@ -84,6 +84,31 @@ body { top: -5px; } +.updates-wrapper { + position: relative; + float: right; + top: -215px; + right: 5px; + border: 1px solid black; + border-radius: 5px; + background-color: #fff; + padding-top: 5px; + padding-bottom: 15px; + width: 500px; +} + +.updates-title { + position: relative; + text-align: center; +} + +.update-content { + position: relative; + margin-left: 10px; + color: blue; +} + + .about-content { font-size: 1rem; } @@ -93,3 +118,11 @@ body { justify-content: center; } +.topics-board-wrapper { + border: 1px solid black; + padding: 25px; + margin-left: 50px; + margin-right: 50px; + border-radius: 5px; + background-color: #fff; +}