diff --git a/Wireframe/images/How-To-Create-a-Git-Branch.png b/Wireframe/images/How-To-Create-a-Git-Branch.png new file mode 100644 index 000000000..c29eaa2b5 Binary files /dev/null and b/Wireframe/images/How-To-Create-a-Git-Branch.png differ diff --git a/Wireframe/images/low-to-final.png b/Wireframe/images/low-to-final.png new file mode 100644 index 000000000..98c6d67cc Binary files /dev/null and b/Wireframe/images/low-to-final.png differ diff --git a/Wireframe/images/readme.png b/Wireframe/images/readme.png new file mode 100644 index 000000000..ee5f0f7b5 Binary files /dev/null and b/Wireframe/images/readme.png differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..d5312ca20 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -10,23 +10,47 @@

Wireframe

- This is the default, provided code and no changes have been made yet. + The purpose of this project is to take a wireframe and express it in web code.

- -

Title

+ an image depicting a GitHub logo addressing how to write a readme +

What is the purpose of a README file?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A README file gives readers a quick, clear understanding of a project. + It explains what the project does, why it exists, and how to use it. + In most cases, it includes setup steps, usage examples, and guidance for anyone who wants to contribute. + It’s essentially the project’s introduction and user manual in one place. +

- Read more + Read more
-
+
+ an image depicting a wireframe from a low level design to a high level design +

What is the purpose of a wireframe?

+

+ A wireframe shows the basic layout of a website or app before any design work begins. + Its purpose is to map out structure, content placement, and user flow so teams can agree + on functionality early, avoid costly changes later, and create a clear blueprint for the final design. + +

+ Read more +
+
+ an image of git branch and its commit history +

What is a branch in Git?

+

+ A branch in Git is an independent line of development that lets you work on new features + or fixes without affecting the main codebase. It creates a safe space to experiment, collaborate, + and make changes, which can later be merged back into the main project when ready. +

+ Read more +
+ diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..2f5795232 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -27,32 +27,74 @@ As well as useful links to learn more */ /* ====== Base Elements ====== General rules for basic HTML elements in any context */ body { - background: var(--paper); + --body-background: oklch(7 0 0); + --body-space: clamp(16px, 16px + 8vw, 60px); + background: var(--body-backgroung); color: var(--ink); font: var(--font); + padding: var(--body-space); + +} +a{ +--text-color: white; } a { + color: var(--text-color); padding: var(--space); - border: var(--line); max-width: fit-content; + text-decoration: none; + border-radius: 10px; + background-color:#cf2e2e; + font-weight:bold; + + + } img, svg { width: 100%; object-fit: cover; + } /* ====== Site Layout ====== Setting the overall rules for page regions https://www.w3.org/WAI/tutorials/page-structure/regions/ */ +header{ + text-align: center; + color: #cf2e2e; + + /* cadetblue */ +} +h1{ + text-transform: uppercase; + font-size:10vh; +} + +p{ + --paragraph-font: 100%/2 Arial, Helvetica, sans-serif; + color: #6c6c89; + font: var(--paragraph-font); +} main { - max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + } footer { position: fixed; bottom: 0; + left: 0; text-align: center; + border-top: var(--line); + width: 100%; + background:oklch(0.07 0 0); + padding: 1rem; + +} +footer{ + + > *:first-child{color: azure; + font-weight: bold;} } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element.