diff --git a/Wireframe/Pic1.png b/Wireframe/Pic1.png new file mode 100644 index 000000000..e6ad55cf3 Binary files /dev/null and b/Wireframe/Pic1.png differ diff --git a/Wireframe/git.png b/Wireframe/git.png new file mode 100644 index 000000000..203d064cd Binary files /dev/null and b/Wireframe/git.png differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..18dca49b0 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -8,25 +8,43 @@
-

Wireframe

-

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

+

Wireframe Task

-
- -

Title

+
+ An image of a wireframe template +

What is the purpose of a wireframe

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A wireframe is a simple diagram showcasing the UI of a webpage + It shows where components should be + in relation to each other and what, roughly, they should do.

- Read more + Read More +
+
+ An image of a Git icon +

What is a branch in Git

+

A git branch is basically a separate workspace that + allows you to work on a project with others without making any + changes to the main directly. You can do all your work on + your branch and then merge it to the main branch +

+ Read More
+
+ A picture of a README template +

What is the purpose of a README FILE

+

+ The purpose of a README file is to provide information on what your + project is about. +

+ Read More + +
diff --git a/Wireframe/logo.jpg b/Wireframe/logo.jpg new file mode 100644 index 000000000..95bde57f9 Binary files /dev/null and b/Wireframe/logo.jpg differ diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..941abc2d2 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,6 +30,9 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + margin:0; + padding:20px; + padding-bottom:80px; } a { padding: var(--space); @@ -40,6 +43,7 @@ img, svg { width: 100%; object-fit: cover; + display:block } /* ====== Site Layout ====== Setting the overall rules for page regions @@ -50,8 +54,9 @@ main { margin: 0 auto calc(var(--space) * 4) auto; } footer { - position: fixed; bottom: 0; + width: 100%; + padding:10px; text-align: center; } /* ====== Articles Grid Layout ==== @@ -79,6 +84,7 @@ article { padding-bottom: var(--space); text-align: left; display: grid; + background: white; grid-template-columns: var(--space) 1fr var(--space); > * { grid-column: 2/3; @@ -87,3 +93,8 @@ article { grid-column: span 3; } } + +main article:first-child img{ + height:300px; + } +