Skip to content

Commit 68f3876

Browse files
committed
HTML:
- Capitalised "READ MORE" - Cleaned up formatting of <a> tags and text CSS: - :root : Updated --line to "2px solid" - header: removed all properties, added property: "text-align: center" - footer: removed: "display: flex," "align-items," "justify-content;" added: "text-align: center" - a: added: "text-decoration: none," "color: black" - article: removed: "align-items: center"
1 parent 5980d21 commit 68f3876

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

Wireframe/index.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ <h2>Wireframe</h2>
2828
In essence, a wireframe is the architectural "blueprint" of a web document.
2929
</p>
3030

31-
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
31+
<a href="https://www.figma.com/resource-library/what-is-wireframing/">
32+
READ MORE
33+
</a>
3234
</article>
3335

3436
<article>
@@ -60,7 +62,10 @@ <h2>README</h2>
6062
<p>
6163
README files are commonly written in Markdown (.md), plaintext format.
6264
</p>
63-
<a href="https://www.makeareadme.com/">Read more</a>
65+
66+
<a href="https://www.makeareadme.com/">
67+
READ MORE
68+
</a>
6469
</article>
6570

6671
<article>
@@ -94,7 +99,7 @@ <h2>Git Branches</h2>
9499
</p>
95100

96101
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches">
97-
Read more
102+
READ MORE
98103
</a>
99104
</article>
100105
</main>

Wireframe/style.css

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ As well as useful links to learn more */
2121
--ink: color-mix(in oklab, var(--color) 5%, black);
2222
--font: 100%/1.5 system-ui;
2323
--space: clamp(6px, 6px + 2vw, 15px);
24-
--line: 1px solid;
24+
--line: 2px solid;
2525
--container: 1280px;
2626
}
2727
/* ====== Base Elements ======
@@ -33,20 +33,21 @@ body {
3333
}
3434
a {font-family: Arial;
3535
font-weight: 600;
36+
text-decoration: none;
37+
color: black;
3638
padding: var(--space);
3739
border: var(--line);
3840
max-width: fit-content;
3941
}
4042
img,
41-
svg {
43+
svg { margin: auto;
4244
width: 100%;
4345
object-fit: cover;
44-
4546
}
4647

4748
/* ====== Text Formatting ===== */
4849

49-
h1, h2 {
50+
h1, h2, a {
5051
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
5152
}
5253
p, ul{
@@ -63,16 +64,10 @@ main {
6364
margin: 0 auto calc(var(--space) * 4) auto;
6465
}
6566

66-
header {
67-
display: flex;
68-
justify-content:center;
69-
align-items: center;
67+
header {text-align: center;
7068
}
7169

72-
footer {
73-
display: flex;
74-
justify-content: center;
75-
align-items: center;
70+
footer {text-align: center;
7671
font-weight: 700;
7772
border-top-style: solid;
7873
}

0 commit comments

Comments
 (0)