diff --git a/Module-Onboarding b/Module-Onboarding new file mode 160000 index 000000000..72fe02ba5 --- /dev/null +++ b/Module-Onboarding @@ -0,0 +1 @@ +Subproject commit 72fe02ba5885d4f58923a041e9a4f6ffca1b99e5 diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..3d51e4660 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -8,25 +8,44 @@
-

Wireframe

-

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

+

Project Essentials Explained

+

Discover the roles of README files, wireframes, and Git branches in software development.

+
- -

Title

+ Github README editor with 'README' in green outline. +

What is a README file?

+

+ A README file is an essential component of many software projects, especially those hosted on platforms like GitHub. +

+ Read more +
+ +
+ what is a wireframe cover photo +

What is a Wireframe?

+

+ A wireframe is a visual blueprint of a website or application's layout, focusing on structure and functionality without the distraction of design elements. +

+ Read more +
+ +
+ +

What is a Branch in Git?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + In Git, a branch is an independent line of development that allows you to work on new features or fixes without affecting the main codebase.

- Read more + Read more
+
+ + diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..8d5d72271 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -26,16 +26,54 @@ As well as useful links to learn more */ } /* ====== Base Elements ====== General rules for basic HTML elements in any context */ + + + body { background: var(--paper); color: var(--ink); font: var(--font); + } + + + +header { + max-width: var(--container); + margin: var(--space)auto; + padding: var(--space); + text-align: centre; + border-bottom: var(--line); +} + +header h1 { + margin: 0; + + text-align: center; +} + +header p { + opacity: 0.8; + text-align: center; +} + a { padding: var(--space); border: var(--line); - max-width: fit-content; + align-items: center; + gap: .5rem; + display: inline-flex; + text-decoration: none; + border-color: currentColor;; + border-radius: .5rem; + transition: transition: background-color .2s ease, border-color .2s ease, transform .1s ease; +} + +a:hover { + background-color: color-mix(in oklab, var(--paper)90%, white); + transform: scale(1.02); } + img, svg { width: 100%; @@ -48,11 +86,17 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + display: grid; + grid-template-columns: 1fr 1fr; + gap: var(--space); } footer { - position: fixed; - bottom: 0; text-align: center; + inset-inline: 0; + bottom: 0; + position: fixed; + background-color: rgb(148, 228, 228); + } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -83,7 +127,11 @@ article { > * { grid-column: 2/3; } + > img { grid-column: span 3; + } + + }