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

Wireframe

-

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

+

This page explains README files, wireframes and Git branches.

+
-
- -

Title

+
+ Wireframe example + +

What is a Wireframe?

+

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A wireframe is a simple visual guide that shows the structure and + layout of a webpage before it is designed.

- Read more + + + Read more about Wireframes +
+ +
+ + Wireframe example + +

What is a wireframe?

+ +

+ A wireframe is a simple layout showing structure before design. +

+ + Read more + + +
+ < +
+ +
+ Git branch diagram + +

What is a Git Branch?

+ +

+ A Git branch is a separate version of your code that allows you to + work on changes without affecting the main project. +

+ + + Read more about Git branches + +
+
+ diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..54a4a94bc 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -18,7 +18,7 @@ As well as useful links to learn more */ ====== Design Palette ====== */ :root { --paper: oklch(7 0 0); - --ink: color-mix(in oklab, var(--color) 5%, black); + --ink: black; --font: 100%/1.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; @@ -30,6 +30,7 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + padding-bottom: 60px; } a { padding: var(--space); @@ -52,7 +53,10 @@ main { footer { position: fixed; bottom: 0; + left: 0; + width: 100%; text-align: center; + background: var(--paper); } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -65,10 +69,12 @@ main { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); - > *:first-child { +} + + main > *: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. @@ -80,10 +86,13 @@ article { text-align: left; display: grid; grid-template-columns: var(--space) 1fr var(--space); - > * { +} + +article > * { grid-column: 2/3; } - > img { + +article > img { grid-column: span 3; } -} +