diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..990bf94bf 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,4 +1,4 @@ - + @@ -8,26 +8,64 @@
-

Wireframe

+

Exploring README Files, Wireframes and Git Branches

- This is the default, provided code and no changes have been made yet. + We will be looking at the purposes and benefits of README files, + Wireframes and Git Branches

- -

Title

+ readme image +

README Files

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + The purpose of a README file is to serve as the primary guide and + entry point for a project, dataset, or software. It communicates what + the project does, how to install and use it, how to contribute, and + provides context so that others can easily understand or interact with + the content.

- Read more + Read more +
+
+ wireframe image +

Wireframes

+

+ The primary purpose of a wireframe is to act as a visual blueprint. It + establishes the basic structure, content placement, and core + functionality of a digital product before visual design and coding + begin. +

+ Read more +
+
+ git branch image +

Git Branches

+

+ In Git, a branch is essentially a lightweight, movable pointer to a + specific commit in your repository's history. Conceptually, it serves + as an isolated, parallel workspace where you can develop new features, + fix bugs, or experiment without affecting the stable "main" code. +

+ Read more
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..5a096e11a 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -26,6 +26,10 @@ As well as useful links to learn more */ } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ + +header { + text-align: center; +} body { background: var(--paper); color: var(--ink); @@ -39,7 +43,7 @@ a { img, svg { width: 100%; - object-fit: cover; + height: 250px; } /* ====== Site Layout ====== Setting the overall rules for page regions @@ -50,9 +54,10 @@ main { margin: 0 auto calc(var(--space) * 4) auto; } footer { - position: fixed; bottom: 0; text-align: center; + width: 100%; + padding: var(--space); } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element.