diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..926878846 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,79 @@ - - - - Wireframe - - - -
-

Wireframe

-

- This is the default, provided code and no changes have been made yet. -

-
-
-
- -

Title

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -

- Read more + + + + + Wireframe + + + + +
+

Understanding Git and Wireframes

+

+ This page explains the basics of Git, the purpose of a README file, and how wireframes help developers plan and + structure a webpage before writing code. It gives a clear overview of how these tools are used together in + real-world web development. +

+
+
+
+
+ Wireframe illustration +
+

Purpose of a Wireframe

+

A wireframe is a simple visual guide used to plan layout and structure + before adding design and content.

+ Read more +
-
-
-

- This is the default, provided code and no changes have been made yet. -

-
- - +
+ Git illustration +
+

Purpose of a README File

+

A README file explains what a project is about, how to set it up, and how to use it. It helps other + developers understand the project quickly without reading all the code.

+ Read more +
+
+
+ Git illustration +
+

What is a Git Branch

+

A Git branch is a separate version of the code that allows developers to work on new features or fixes + without affecting the main codebase. Once the work is complete, the branch can be merged back into the main + branch safely.

+ Read more +
+
+ + +
+ + + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..981072982 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -26,15 +26,24 @@ As well as useful links to learn more */ } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ + header{ + margin-bottom: calc(var(--space) * 4); + text-align: center;} body { background: var(--paper); color: var(--ink); font: var(--font); + padding: 80px; } a { padding: var(--space); border: var(--line); max-width: fit-content; + +} +.card-content a{ + margin-top: 12px; + display: inline-block; } img, svg { @@ -48,12 +57,34 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + padding-bottom: 80px; } footer { position: fixed; + left: 0; + right: 0; bottom: 0; + z-index: 10; + padding: 4px 0; + background: white; text-align: center; } +footer nav{ + display: flex; + justify-content: center; + align-items: center; + gap: var(--space); + flex-direction: row; + flex-wrap: wrap; +} +footer nav a{ + padding: 4px 8px; + border: none; + max-width: fit-content; + text-decoration: none; + color: #222; + font-size: 0.9rem; +} /* ====== 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 @@ -87,3 +118,11 @@ article { grid-column: span 3; } } +main>section{ + display:grid; + grid-template-columns: 1fr 1fr; + gap: 16px; +} +main>section article:first-child { + grid-column: 1 / -1; +}