From 681884f39cf0a2e699b9924b7e77856ad3babe74 Mon Sep 17 00:00:00 2001 From: derekmlr <1548966+derekmlr@users.noreply.github.com> Date: Tue, 23 Apr 2024 11:58:29 -0400 Subject: [PATCH 1/3] Added more color contrast --- public/stylesheets/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 9453385b9..d0cfc6eec 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -1,8 +1,10 @@ body { + background: #fff; + color: #000; padding: 50px; - font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; + font: 15px "Lucida Grande", Helvetica, Arial, sans-serif; } a { - color: #00B7FF; + color: #00f; } From 602c8d5a75c998504494a854178b49b560da7ed2 Mon Sep 17 00:00:00 2001 From: derekmlr <1548966+derekmlr@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:01:01 -0400 Subject: [PATCH 2/3] Added viewport meta to root template --- views/layout.pug | 1 + 1 file changed, 1 insertion(+) diff --git a/views/layout.pug b/views/layout.pug index 15af079bf..c0880b474 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -3,5 +3,6 @@ html head title= title link(rel='stylesheet', href='/stylesheets/style.css') + meta(name="viewport" content="width=device-width, initial-scale=1") body block content From d596c65b7de7e53805f3d5b96d3f14e024b05df7 Mon Sep 17 00:00:00 2001 From: derekmlr <1548966+derekmlr@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:02:08 -0400 Subject: [PATCH 3/3] Added language to html tag --- views/layout.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/layout.pug b/views/layout.pug index c0880b474..db861999d 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -1,5 +1,5 @@ doctype html -html +html(lang="en-US") head title= title link(rel='stylesheet', href='/stylesheets/style.css')