diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..7ef6d57fa 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,73 @@ - - - - Wireframe - - - -
-

Wireframe

+ + + + + Three Key Tech Tips + + + + +
+

Three Tech Tips

+

+ Here are some useful things to know when learning to create your own websites + and manage tech projects. +

+
+
+
+ Readme +

The Purpose of a Readme File

- This is the default, provided code and no changes have been made yet. + A readme file is a very important part of any GitHub repository. It is often the first item a visitor will see + when landing on a repository. A readme file should provide users with information about the purpose of a + project, how to use it effectively and who the contributers and maintainers of the project are.

-
-
-
- -

Title

-

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

- Read more -
-
- - - + Read More + +
+ Git Branch Model +

+ What is a Git Branch +

+

+ A git branch is a pointer to a snapshot of all the changes that occured + on that branch. Upon creating a new GitHub repository you will usually + be on the main branch by default. You can create additional branches which + are like separate workspaces to make changes to a project or test other features + without compromising the base project. Branches are useful when working + on a project with many collaborators as each individual can make changes on their own local + copy of a project and propose their changes to be integrated to the main branch + after approval. +

+ Read More +
+ + + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..3a7f07952 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -22,8 +22,11 @@ As well as useful links to learn more */ --font: 100%/1.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; + --line2: 5px solid; --container: 1280px; } + + /* ====== Base Elements ====== General rules for basic HTML elements in any context */ body { @@ -31,6 +34,23 @@ body { color: var(--ink); font: var(--font); } +h1 { + text-align: center; + font-size: 3rem; +} +h2 { + text-align: left; + font-size: 2rem; +} + +article > p { + text-align: left; + font-size: 1rem; +} +header > p { + text-align: center; + font-size: 1rem; +} a { padding: var(--space); border: var(--line); @@ -40,6 +60,7 @@ img, svg { width: 100%; object-fit: cover; + aspect-ratio: 16/9; } /* ====== Site Layout ====== Setting the overall rules for page regions @@ -50,8 +71,14 @@ main { margin: 0 auto calc(var(--space) * 4) auto; } footer { + border: var(--line); position: fixed; - bottom: 0; + bottom: -2px; + left: 50%; + transform: translateX(-50%); + width: 100%; + background-color: rgb(202, 160, 160); + border-color: black; text-align: center; } /* ====== Articles Grid Layout ==== @@ -80,6 +107,7 @@ article { text-align: left; display: grid; grid-template-columns: var(--space) 1fr var(--space); + align-content: start; > * { grid-column: 2/3; }