From cf872e5fc471a2fa3c93877d53c809de047eb1db Mon Sep 17 00:00:00 2001
From: Dave Welsh <dw927@drexel.edu>
Date: Tue, 28 Feb 2023 19:02:03 -0500
Subject: [PATCH] Changed text to dark gray. Set detail titles to bold.

---
 front_end/static/styles/style.css | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/front_end/static/styles/style.css b/front_end/static/styles/style.css
index 0dbd5e3..fb14546 100644
--- a/front_end/static/styles/style.css
+++ b/front_end/static/styles/style.css
@@ -7,6 +7,10 @@ title {
     display: block;
 }
 
+h1, h2 {
+    color: #36454f;
+}
+
 .title-wrapper {
     width: 100%;
     text-align: center;
@@ -25,11 +29,19 @@ title {
     font-weight: bold;
 }
 
+.nav-link:hover {
+    color: lightgray;
+}
+
 .navbar-brand {
     color: white;
     font-weight: bold;
 }
 
+.navbar-brand:hover {
+    color: lightgray;
+}
+
 .bg-primary {
     color: white;
 }
@@ -51,10 +63,11 @@ th {
 
 tr {
     transition-duration: .2s;
+    color: #36454f;
 }
 
 tr:hover {
-    background-color: lightgray;
+    background-color: #e5e4e2;
 }
 
 
@@ -141,4 +154,9 @@ dialog {
 
 .detail-right {
     width: 70%;
-}
\ No newline at end of file
+}
+
+.report-detail-table td:first-child {
+    font-weight: 650;
+}
+
-- 
GitLab