File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 < h1 > Wireframe Task</ h1 >
1212 </ header >
1313 < main >
14+
1415 < article >
1516 < img src ="wireframe.png " alt ="An image of a wireframe template "/>
1617 < h2 > What is the purpose of a wireframe</ h2 >
@@ -20,27 +21,34 @@ <h2>What is the purpose of a wireframe</h2>
2021 in relation to each other and what, roughly, they should do.
2122 </ p >
2223 < a href ="https://miro.com/aq/paid-search/wire-frame/ "> Read More</ a >
23- </ article >
24+ </ article >
25+
26+
2427 < article >
2528 < img src = "git.png " alt ="An image of a Git icon ">
2629 < h2 > What is a branch in Git</ h2 >
27- < p > A git branch is basically a separate workspace that
30+ < p > A git branch is basically a separate workspace that
2831 allows you to work on a project with others without making any
2932 changes to the main directly. You can do all your work on
3033 your branch and then merge it to the main branch
31- </ p >
32- < a href ="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell " > Read More </ a >
33- </ article >
34- < article >
34+ </ p >
35+ < a href ="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell " > Read More </ a >
36+ </ article >
37+
38+
39+ < article >
3540 < img src ="logo.jpg " alt = "A picture of a README template ">
36- < h2 > What is the purpose of a README FILE</ h2 >
37- < p >
38- The purpose of a README file is to provide information on what your
39- project is about.
40- </ p >
41- < a href ="https://www.geeksforgeeks.org/git/what-is-readme-md-file/ "> Read More</ a >
41+ < h2 > What is the purpose of a README FILE</ h2 >
42+ < p >
43+ The purpose of a README file is to provide information on what your
44+ project is about.
45+
46+ </ p >
47+
48+ < a href ="https://www.geeksforgeeks.org/git/what-is-readme-md-file/ "> Read More</ a >
4249
43- </ article >
50+ </ article >
51+
4452 </ main >
4553 < footer >
4654 < p >
Original file line number Diff line number Diff line change @@ -53,11 +53,18 @@ main {
5353 max-width : var (--container );
5454 margin : 0 auto calc (var (--space ) * 4 ) auto;
5555}
56+
57+ h1 {
58+
59+ text-align : center;
60+ }
5661footer {
5762 bottom : 0 ;
5863 width : 100% ;
5964 padding : 10px ;
6065 text-align : center;
66+ position : fixed;
67+ background-color : white;
6168}
6269/* ====== Articles Grid Layout ====
6370Setting the rules for how articles are placed in the main element.
@@ -70,10 +77,11 @@ main {
7077 display : grid;
7178 grid-template-columns : 1fr 1fr ;
7279 gap : var (--space );
73- > * : first-child {
80+ align-items : stretch;
81+ }
82+ main > * : first-child {
7483 grid-column : span 2 ;
7584 }
76- }
7785/* ====== Article Layout ======
7886Setting the rules for how elements are placed in the article.
7987Now laying out just the INSIDE of the repeated card/article design.
@@ -85,15 +93,23 @@ article {
8593 text-align : left;
8694 display : grid;
8795 background : white;
96+
8897 grid-template-columns : var (--space ) 1fr var (--space );
89- > * {
98+ grid-template-rows : auto auto 1fr auto;
99+ }
100+ article > * {
90101 grid-column : 2 / 3 ;
91102 }
92- > img {
103+ article > img {
93104 grid-column : span 3 ;
94105 }
106+ article p {
107+ margin-bottom : 0 ;
95108}
96-
109+ article a {
110+ margin-top : 20px ;
111+ }
112+
97113main article : first-child img {
98114 height : 300px ;
99115 }
You can’t perform that action at this time.
0 commit comments