From 7a1fe7278f23b882b2580a1eaf8712bf404a1408 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Tue, 13 Jan 2026 15:50:31 +0000 Subject: [PATCH 01/11] Added wireframe page HTML content --- Wireframe/index.html | 52 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 9 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..1423bfa16 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -8,26 +8,60 @@
-

Wireframe

+

Module Onboarding

- This is the default, provided code and no changes have been made yet. + This is a wireframe for the onboarding module. It contains three + articles about different topics.

-

Title

+

Purpose of a README file

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + In repositories, particularly on GitHub, a README.md is an essential + document. It provides an overview of the project, clarifies its setup, + usage, and goal, and facilitates productive user and developer + participation.

- Read more + Read more +
+
+ +

Purpose of a Wireframe

+

+ It is a visual representation of a website, mobile application, or + other digital interface that emphasizes the general layout and + structure of the design without delving into particulars like colors, + fonts, or graphics. +

+ Read more +
+
+ +

What is a Git Branch

+

+ A git branch is a lightweight pointer to a commit in Git. It allows + you to work on different versions of your project simultaneously + without affecting the main codebase. +

+ Read more
From 5e662673ad433afdd363fc100657ba17114ff3d5 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 14 Jan 2026 15:40:38 +0000 Subject: [PATCH 02/11] Css stlying updated to meet wireframe requirements --- Wireframe/style.css | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..421749c26 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,6 +30,13 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + margin: 0; + font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; + line-height: normal; + min-height: 100vh; + display: flex; + flex-direction: column; } a { padding: var(--space); @@ -41,6 +48,13 @@ svg { width: 100%; object-fit: cover; } + +header { + max-width: var(--container); + margin: 0 auto; + padding: var(--space); +} + /* ====== Site Layout ====== Setting the overall rules for page regions https://www.w3.org/WAI/tutorials/page-structure/regions/ @@ -48,11 +62,20 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + flex: 1; + display: grid; + grid-template-columns: 1fr 1fr; + gap: var(--space); + > *:first-child { + grid-column: span 2; + } } + footer { - position: fixed; - bottom: 0; + border-top: var(--line); + padding: var(--space); text-align: center; + width: 100%; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -61,14 +84,7 @@ Play with the options that come up. https://developer.chrome.com/docs/devtools/css/grid https://gridbyexample.com/learn/ */ -main { - display: grid; - grid-template-columns: 1fr 1fr; - gap: var(--space); - > *:first-child { - grid-column: span 2; - } -} + /* ====== Article Layout ====== Setting the rules for how elements are placed in the article. Now laying out just the INSIDE of the repeated card/article design. @@ -76,6 +92,7 @@ Keeping things orderly and separate is the key to good, simple CSS. */ article { border: var(--line); + border: 1px solid black; padding-bottom: var(--space); text-align: left; display: grid; From cd041dd9ead1d76dfb0162d03737d34710d01f26 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 14 Jan 2026 15:42:30 +0000 Subject: [PATCH 03/11] updated the style.css file --- Wireframe/style.css | 37 +------------------------------------ 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index 421749c26..ada3f4f22 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -1,21 +1,3 @@ -/* Here are some starter styles -You can edit these or replace them entirely -It's showing you a common way to organise CSS -And includes solutions to common problems -As well as useful links to learn more */ - -/* ====== Design Palette ====== - This is our "design palette". - It sets out the colours, fonts, styles etc to be used in this design - At work, a designer will give these to you based on the corporate brand, but while you are learning - You can design it yourself if you like - Inspect the starter design with Devtools - Click on the colour swatches to see what is happening - I've put some useful CSS you won't have learned yet - For you to explore and play with if you are interested - https://web.dev/articles/min-max-clamp - https://scrimba.com/learn-css-variables-c026 -====== Design Palette ====== */ :root { --paper: oklch(7 0 0); --ink: color-mix(in oklab, var(--color) 5%, black); @@ -24,8 +6,7 @@ As well as useful links to learn more */ --line: 1px solid; --container: 1280px; } -/* ====== Base Elements ====== - General rules for basic HTML elements in any context */ + body { background: var(--paper); color: var(--ink); @@ -55,10 +36,6 @@ header { padding: var(--space); } -/* ====== Site Layout ====== -Setting the overall rules for page regions -https://www.w3.org/WAI/tutorials/page-structure/regions/ -*/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; @@ -77,19 +54,7 @@ footer { text-align: center; width: 100%; } -/* ====== Articles Grid Layout ==== -Setting the rules for how articles are placed in the main element. -Inspect this in Devtools and click the "grid" button in the Elements view -Play with the options that come up. -https://developer.chrome.com/docs/devtools/css/grid -https://gridbyexample.com/learn/ -*/ -/* ====== Article Layout ====== -Setting the rules for how elements are placed in the article. -Now laying out just the INSIDE of the repeated card/article design. -Keeping things orderly and separate is the key to good, simple CSS. -*/ article { border: var(--line); border: 1px solid black; From 09a1af6e6aec17750c934821dbf94c08d8414f00 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 14 Jan 2026 16:11:03 +0000 Subject: [PATCH 04/11] updated images to the articles --- Wireframe/index.html | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 1423bfa16..5151dce20 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -16,7 +16,10 @@

Module Onboarding

- + Image of a README file

Purpose of a README file

In repositories, particularly on GitHub, a README.md is an essential @@ -31,7 +34,10 @@

Purpose of a README file

>
- + Image of a wireframe

Purpose of a Wireframe

It is a visual representation of a website, mobile application, or @@ -46,7 +52,10 @@

Purpose of a Wireframe

>
- + Image of a Git branch

What is a Git Branch

A git branch is a lightweight pointer to a commit in Git. It allows From ed1d76ea4d1a8eb7c5aa77aadb2b9a16c0e8c427 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 21 Jan 2026 18:54:17 +0000 Subject: [PATCH 05/11] Fixed validator errors --- Wireframe/index.html | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Wireframe/index.html b/Wireframe/index.html index 5151dce20..16c7decf7 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,4 +1,4 @@ - + @@ -27,9 +27,7 @@

Purpose of a README file

usage, and goal, and facilitates productive user and developer participation.

- Read more
@@ -45,9 +43,7 @@

Purpose of a Wireframe

structure of the design without delving into particulars like colors, fonts, or graphics.

- Read more @@ -62,9 +58,7 @@

What is a Git Branch

you to work on different versions of your project simultaneously without affecting the main codebase.

- Read more From 59da18cd4a82e34633d884d2c5530ee914a07705 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 21 Jan 2026 19:33:32 +0000 Subject: [PATCH 06/11] footer fixed to the buttom --- Wireframe/style.css | 47 +++++++++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index ada3f4f22..175e0f3b2 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -7,23 +7,41 @@ --container: 1280px; } +html, +body { + height: 100%; +} + body { background: var(--paper); color: var(--ink); font: var(--font); margin: 0; - font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; + font-family: + system-ui, + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + Roboto, + Oxygen, + Ubuntu, + Cantarell, + "Open Sans", + "Helvetica Neue", + sans-serif; line-height: normal; + min-height: 100vh; display: flex; flex-direction: column; } + a { padding: var(--space); border: var(--line); max-width: fit-content; } + img, svg { width: 100%; @@ -38,14 +56,17 @@ header { main { max-width: var(--container); - margin: 0 auto calc(var(--space) * 4) auto; + margin: 0 auto; + padding-bottom: calc(var(--space) * 4); + flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); - > *:first-child { - grid-column: span 2; - } +} + +main > *:first-child { + grid-column: span 2; } footer { @@ -62,10 +83,12 @@ article { text-align: left; display: grid; grid-template-columns: var(--space) 1fr var(--space); - > * { - grid-column: 2/3; - } - > img { - grid-column: span 3; - } +} + +article > * { + grid-column: 2/3; +} + +article > img { + grid-column: span 3; } From 0a9a8f93526b76f7e66f54ce12e49e3cccf7d2af Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Wed, 21 Jan 2026 19:54:37 +0000 Subject: [PATCH 07/11] page centered and height of images are aligned --- Wireframe/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Wireframe/style.css b/Wireframe/style.css index 175e0f3b2..2767ffd28 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -48,10 +48,17 @@ svg { object-fit: cover; } +article img { + height: 240px; + object-fit: cover; + display: block; +} + header { max-width: var(--container); margin: 0 auto; padding: var(--space); + text-align: center; } main { From 38c319f332875b3550900cb1424bb6650f97ee30 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Sat, 24 Jan 2026 15:34:27 +0000 Subject: [PATCH 08/11] Footer is correctly fixed to the viewport --- Wireframe/style.css | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index 2767ffd28..0cf2b8d58 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -5,6 +5,7 @@ --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; --container: 1280px; + --footer-height: 60px; } html, @@ -21,19 +22,13 @@ body { system-ui, -apple-system, BlinkMacSystemFont, - "Segoe UI", - Roboto, - Oxygen, - Ubuntu, - Cantarell, - "Open Sans", - "Helvetica Neue", sans-serif; line-height: normal; min-height: 100vh; display: flex; flex-direction: column; + overflow: hidden; } a { @@ -49,9 +44,8 @@ svg { } article img { - height: 240px; - object-fit: cover; - display: block; + height: 20vh; + max-height: 180px; } header { @@ -62,14 +56,14 @@ header { } main { + flex: 1; max-width: var(--container); margin: 0 auto; - padding-bottom: calc(var(--space) * 4); - - flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); + overflow: hidden; + padding-bottom: 60px; } main > *:first-child { @@ -77,10 +71,13 @@ main > *:first-child { } footer { - border-top: var(--line); + border-top: none; /* or keep if you want */ padding: var(--space); text-align: center; width: 100%; + margin-top: auto; + background: var(--paper); + border-top: 1px solid black; } article { From 968c35e26508bb4ae1f19ae9a76691e3f02f5ea7 Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Sat, 24 Jan 2026 16:41:39 +0000 Subject: [PATCH 09/11] Fixed hopefully --- Wireframe/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/Wireframe/index.html b/Wireframe/index.html index 16c7decf7..4815b8b1a 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -63,6 +63,7 @@

What is a Git Branch

>
+

© 2026 Daniel Aderibigbe

From 6a2cc8feed4cbbdee0a7023e71c45c48a36567be Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Mon, 26 Jan 2026 11:48:59 +0000 Subject: [PATCH 10/11] Page is scrollable now --- Wireframe/style.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index 0cf2b8d58..70a5765de 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -5,12 +5,13 @@ --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; --container: 1280px; - --footer-height: 60px; + --footer-height: 50px; } html, body { height: 100%; + padding-bottom: var(--footer-height); } body { @@ -28,7 +29,7 @@ body { min-height: 100vh; display: flex; flex-direction: column; - overflow: hidden; + overflow: auto; } a { @@ -71,13 +72,16 @@ main > *:first-child { } footer { - border-top: none; /* or keep if you want */ + height: var(--footer-h); + position: fixed; + left: 0; + bottom: 0; + width: 100%; padding: var(--space); text-align: center; - width: 100%; - margin-top: auto; background: var(--paper); border-top: 1px solid black; + box-sizing: border-box; } article { From 68bbc576193643e8360c5d0e14bc277d6217f4ae Mon Sep 17 00:00:00 2001 From: Daniel Aderibigbe Date: Mon, 26 Jan 2026 12:21:50 +0000 Subject: [PATCH 11/11] footer correctly fixed and content is scrollable. --- Wireframe/style.css | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Wireframe/style.css b/Wireframe/style.css index 70a5765de..e989acf3e 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -5,7 +5,7 @@ --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; --container: 1280px; - --footer-height: 50px; + --footer-height: 80px; } html, @@ -30,6 +30,7 @@ body { display: flex; flex-direction: column; overflow: auto; + padding-bottom: var(--footer-height); } a { @@ -52,18 +53,18 @@ article img { header { max-width: var(--container); margin: 0 auto; - padding: var(--space); + padding-bottom: var(--space); text-align: center; } main { flex: 1; max-width: var(--container); - margin: 0 auto; + margin: 0 auto calc(var(--space) * 4); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); - overflow: hidden; + overflow: visible; padding-bottom: 60px; } @@ -72,15 +73,14 @@ main > *:first-child { } footer { - height: var(--footer-h); position: fixed; - left: 0; bottom: 0; - width: 100%; - padding: var(--space); - text-align: center; - background: var(--paper); - border-top: 1px solid black; + left: 50%; + transform: translateX(-50%); + width: 50%; + height: var(--footer-h); + display: grid; + place-items: center; box-sizing: border-box; }