diff --git a/Wireframe/README.md b/Wireframe /README.md similarity index 100% rename from Wireframe/README.md rename to Wireframe /README.md diff --git a/Wireframe /index.html b/Wireframe /index.html new file mode 100644 index 000000000..3780e65a8 --- /dev/null +++ b/Wireframe /index.html @@ -0,0 +1,70 @@ + + + + + + README, Wireframes and Git Branches + + + +
+

README, Wireframes and Git Branches

+

A simple guide to three important web development concepts.

+
+
+
+ README file illustration +

What is the purpose of a README file?

+

+ A README file explains what a project is, how it works, and how + someone can use it. It often includes setup instructions, features, + and important notes for developers. +

+ Read more +
+ +
+ Wireframe file illustration +

What is the purpose of a wireframe?

+

+ A wireframe is a simple plan for a webpage or app. It shows where + content, images, buttons, and sections will go before the final design + is created. +

+ Read more +
+ +
+ Git branch file illustration +

What is a branch in Git?

+

+ A branch in Git is a separate version of a project. It lets developers + work on new features or fixes without changing the main version of the + code. +

+ Read more +
+
+ + + diff --git a/Wireframe/placeholder.svg b/Wireframe /placeholder.svg similarity index 100% rename from Wireframe/placeholder.svg rename to Wireframe /placeholder.svg diff --git a/Wireframe/style.css b/Wireframe /style.css similarity index 80% rename from Wireframe/style.css rename to Wireframe /style.css index be835b6c7..092a0be49 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: blue; --font: 100%/1.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; @@ -26,10 +26,15 @@ As well as useful links to learn more */ } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ +header { + text-align: center; +} +/* Futuristic font */ body { background: var(--paper); color: var(--ink); font: var(--font); + font-family: "Orbitron", "Rajdhani", "Segoe UI", sans-serif; } a { padding: var(--space); @@ -39,7 +44,10 @@ a { img, svg { width: 100%; + height: 250px; object-fit: cover; + border: 3px solid blue; + border-radius: 20px; } /* ====== Site Layout ====== Setting the overall rules for page regions @@ -50,9 +58,11 @@ main { margin: 0 auto calc(var(--space) * 4) auto; } footer { - position: fixed; - bottom: 0; text-align: center; + font-size: 0.8rem; + color: var(--ink); + margin-top: 40px; + padding: 20px; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -76,14 +86,27 @@ Keeping things orderly and separate is the key to good, simple CSS. */ article { border: var(--line); + border-radius: 20px; + box-shadow: 0 0 15px blue; padding-bottom: var(--space); 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: 2 / 3; + margin-top: var(--space); +} +> img { + grid-column: 2 / 3; + margin-top: var(--space); +} +h1, +h2, +a { + text-transform: uppercase; + letter-spacing: 1px; } diff --git a/Wireframe/wireframe.png b/Wireframe /wireframe.png similarity index 100% rename from Wireframe/wireframe.png rename to Wireframe /wireframe.png diff --git a/Wireframe/index.html b/Wireframe/index.html deleted file mode 100644 index 0e014e535..000000000 --- a/Wireframe/index.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - 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 -
-
- - -