From 910d6649d530da9514f9a76c0a1ccf1d44090f54 Mon Sep 17 00:00:00 2001 From: davidml Date: Wed, 15 Dec 2021 12:31:48 +0000 Subject: [PATCH 1/2] Centered article div --- sass/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sass/index.css b/sass/index.css index 59bfa8c..833fb40 100644 --- a/sass/index.css +++ b/sass/index.css @@ -4,6 +4,12 @@ body { display: flex; flex-direction: column; } +.articles { + margin: auto; + width: 50%; + padding: 10px; +} + .header { background-color: #EAE2B7; width: 100%; From 7ddc9cfeffce4ded1a67c3ad37cecec023c094bb Mon Sep 17 00:00:00 2001 From: davidml Date: Wed, 15 Dec 2021 12:42:27 +0000 Subject: [PATCH 2/2] Improved Design --- sass/index.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/sass/index.css b/sass/index.css index 833fb40..00acb6c 100644 --- a/sass/index.css +++ b/sass/index.css @@ -2,16 +2,30 @@ body { margin: 0; padding: 0; display: flex; - flex-direction: column; } + flex-direction: column; + background-color: #03071e; +} + +a { + color: #EAE2B7; + text-decoration: none; +} .articles { margin: auto; width: 50%; padding: 10px; + font-family: 'Roboto', sans-serif; +} + +.navigation { + font-family: 'Roboto', sans-serif } .header { - background-color: #EAE2B7; + background-color: #03071e; + color: #EAE2B7; + font-family: 'Roboto', sans-serif; width: 100%; height: 100px; display: flex;