From 1b303ab84b135f1abfa2fd50f4f9030044dd1765 Mon Sep 17 00:00:00 2001 From: Chad Davis Date: Fri, 19 Jul 2024 13:49:47 -0500 Subject: [PATCH 1/5] Add missing semicolon in CSS --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 13edc0b..4a43444 100644 --- a/index.php +++ b/index.php @@ -526,7 +526,7 @@ function show_message($message_text) { table th { background-color: #007bff; color: #fff; - height: 38px + height: 38px; } table tr:nth-child(even) { background-color: snow; From afe0ea043907f84cea7b6dd614e77d6f3f46e519 Mon Sep 17 00:00:00 2001 From: Chad Davis Date: Fri, 19 Jul 2024 13:51:56 -0500 Subject: [PATCH 2/5] Update CSS alignment and spacing - Add blank lines between each CSS statement - Add spacing to align all CSS attributes by colon --- index.php | 213 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 121 insertions(+), 92 deletions(-) diff --git a/index.php b/index.php index 4a43444..0cbe839 100644 --- a/index.php +++ b/index.php @@ -395,116 +395,134 @@ function show_message($message_text) { From 1cbf4ca002b0ca22fbca3f3afa21e405b1b63338 Mon Sep 17 00:00:00 2001 From: Chad Davis Date: Fri, 19 Jul 2024 13:58:24 -0500 Subject: [PATCH 3/5] Replace CSS hex color codes with color keywords - Replaced `#000` with `black` - Replaced `#fff` with `white` - Replaced `#ccc` with `lightgray` --- index.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/index.php b/index.php index 0cbe839..c47b415 100644 --- a/index.php +++ b/index.php @@ -395,8 +395,8 @@ function show_message($message_text) {