Skip to content

Commit fe9a39f

Browse files
committed
Update wirframe: add article images with alt text and fix footer styling
1 parent d542636 commit fe9a39f

3 files changed

Lines changed: 16 additions & 10 deletions

File tree

Module-Onboarding

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 72fe02ba5885d4f58923a041e9a4f6ffca1b99e5

Wireframe/index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1>Project Essentials Explained</h1>
1414

1515
<main>
1616
<article>
17-
<img src="placeholder.svg" alt="" />
17+
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="Github README editor with 'README' in green outline."/>
1818
<h2>What is a README file?</h2>
1919
<p>
2020
A README file is an essential component of many software projects, especially those hosted on platforms like GitHub.
@@ -23,7 +23,7 @@ <h2>What is a README file?</h2>
2323
</article>
2424

2525
<article>
26-
<img src="placeholder.svg" alt="" />
26+
<img src="https://cdn.sanity.io/images/599r6htc/regionalized/4c8605ad998d69b03a6eefb850cce5e23a0a96dc-2880x1440.png?q=75&fit=max&auto=format&dpr=2" alt="what is a wireframe cover photo"/>
2727
<h2>What is a Wireframe?</h2>
2828
<p>
2929
A wireframe is a visual blueprint of a website or application's layout, focusing on structure and functionality without the distraction of design elements.
@@ -32,13 +32,14 @@ <h2>What is a Wireframe?</h2>
3232
</article>
3333

3434
<article>
35-
<img src="placeholder.svg" alt="" />
35+
<img src="https://i0.wp.com/digitalvarys.com/wp-content/uploads/2019/06/image-6.png?fit=640%2C257&ssl=1" alt="" />
3636
<h2>What is a Branch in Git?</h2>
3737
<p>
3838
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.
3939
</p>
4040
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
4141
</article>
42+
4243
</main>
4344

4445

Wireframe/style.css

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,13 @@ header p {
6060
a {
6161
padding: var(--space);
6262
border: var(--line);
63-
max-width: fit-content;
63+
align-items: center;
64+
gap: .5rem;
65+
display: inline-flex;
6466
text-decoration: none;
65-
color: inherit;
66-
transition: all 0.3s ease;
67+
border-color: currentColor;;
68+
border-radius: .5rem;
69+
transition: transition: background-color .2s ease, border-color .2s ease, transform .1s ease;
6770
}
6871

6972
a:hover {
@@ -88,11 +91,12 @@ main {
8891
gap: var(--space);
8992
}
9093
footer {
91-
position: fixed;
92-
bottom: 0;
9394
text-align: center;
94-
border-top: 1px solid black;
95-
width: 100%;
95+
inset-inline: 0;
96+
bottom: 0;
97+
position: fixed;
98+
background-color: rgb(148, 228, 228);
99+
96100
}
97101
/* ====== Articles Grid Layout ====
98102
Setting the rules for how articles are placed in the main element.

0 commit comments

Comments
 (0)