Skip to content

Commit f54c801

Browse files
committed
feat: removed some pages
1 parent 44a44eb commit f54c801

2 files changed

Lines changed: 71 additions & 47 deletions

File tree

Wireframe/index.html

Lines changed: 44 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -29,36 +29,53 @@ <h1 class="site-title">The Blog</h1>
2929
<main>
3030
<article class="article-feature">
3131
<img src="./images/md.png" alt="illustration of a readme.md file">
32-
<h2>What is the purpose of a README file</h2>
33-
<p>
34-
A README file is usually the first file someone sees when they open a project repository. Its main
35-
purpose is ...
36-
</p>
37-
<a class="article-read-more" href="readme.html"
38-
aria-label="read more about what the purpose of a read me file does">README file ...</a>
32+
<div class="article-feature-text">
33+
<h2>What is the purpose of a README file</h2>
34+
<p>
35+
according to GitHub Docs, a README file serves as the primary source of information about a project and
36+
helps users understand how to install, use, and contribute to it <em>(GitHub Docs, n.d.).</em>
37+
</p>
38+
<p>
39+
A README file is one of the most important documents within a software
40+
project. It is usually the first file that users, developers, recruiters,
41+
or potential employers look at when they visit a project's repository.
42+
The name "README" comes from the idea that it should be the file people
43+
read before doing anything else with the project.
44+
</p>
45+
<a class="article-read-more" href="#"
46+
aria-label="read more about what the purpose of a read me file does">README file ...</a>
47+
</div>
3948
</article>
4049

41-
<article class="article-sec">
42-
<img src="./images/wireframes-01.png.webp" alt="illustration of a man showing a wireframe">
43-
<h2>What is the purpose of a wireframe</h2>
44-
<p>
45-
A wireframe is a simple visual representation of a website or application's layout. It acts as a
46-
blueprint ...
47-
</p>
48-
<a class="article-read-more" href="wireframe.html" aria-label="read more about the purpose of a wireframe">Wireframes</a>
49-
</article>
50-
51-
<article class="article-sec">
52-
<img src="./images/branch.webp" alt="illustration of a git tree branching out">
53-
<h2>What is a branch in Git?</h2>
54-
<p>
55-
A branch in Git is an independent line of development that allows developers to work on changes without
56-
affecting ...
57-
</p>
58-
<a class="article-read-more" href="branches.html" aria-label="read more about branches on git">Git
59-
branching</a>
60-
</article>
50+
<div class="article-secondary-flex">
51+
<article class="article-sec">
52+
<img src="./images/wireframes-01.png.webp" alt="illustration of a man showing a wireframe">
53+
<h2>What is the purpose of a wireframe</h2>
54+
<p>
55+
A wireframe is a simple visual representation of a website or application's layout. It acts as a
56+
blueprint.
57+
</p>
58+
<p>Figma describes a wireframe as a low-fidelity representation of a user interface that focuses on layout,
59+
structure, and functionality before visual design decisions are made <em>(Figma, n.d.).</em></p>
60+
<a class="article-read-more" href="#"
61+
aria-label="read more about the purpose of a wireframe">Wireframes</a>
62+
</article>
6163

64+
<article class="article-sec">
65+
<img src="./images/branch.webp" alt="illustration of a git tree branching out">
66+
<h2>What is a branch in Git?</h2>
67+
<p>Git documentation explains that branches allow developers to diverge from the main line of development
68+
and work independently on features before merging their changes back into the project
69+
<em>(Git SCM, n.d.).</em></p>
70+
<p>
71+
<p>
72+
A branch in Git is a separate line of development that allows developers to
73+
work on changes independently without affecting the main project.
74+
</p>
75+
<a class="article-read-more" href="#" aria-label="read more about branches on git">Git
76+
branching</a>
77+
</article>
78+
</div>
6279
</main>
6380
</div>
6481

Wireframe/style.css

Lines changed: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,21 @@ body {
1010
max-width: 1200px;
1111
margin: 0 auto;
1212
}
13-
13+
.article-feature-text{
14+
padding:0 0 2em 2em;
15+
}
16+
.article-secondary-flex{
17+
display:flex;
18+
justify-content:space-between;
19+
}
20+
.article-sec{
21+
margin-top:1.5em;
22+
padding:1.5em;
23+
width: 44%
24+
}
25+
article{
26+
border: 1px solid #fb8500;
27+
}
1428
img,
1529
svg {
1630
width: 100%;
@@ -37,7 +51,7 @@ h1 {
3751
header {
3852
text-align: center;
3953
margin: 0;
40-
padding: 50px;
54+
/*padding: 50px;*/
4155
}
4256

4357
/* ====== Footer ====== */
@@ -48,28 +62,21 @@ header {
4862
display: flex;
4963
justify-content:space-between;
5064
align-items: center;
51-
5265
}
5366

5467
/* ====== Navigation ====== */
55-
ul li {
56-
list-style: none;
57-
58-
}
59-
60-
ul li a {
68+
.article-read-more {
6169
text-decoration: none;
62-
color:#1b263b;
70+
border: 1px solid #03045e;
71+
padding: .7em 1.2em;
72+
color:#fff;
73+
background: #e76f51;
74+
border-radius:2px;
6375
}
64-
ul li a:hover, ul li a:focus{
65-
color: #ffd60a;
76+
.article-read-more:hover,
77+
.article-read-more:focus{
78+
background: #ffc300;
79+
color:black;
80+
font-size:20px;
6681
}
67-
.footer-nav ul{
68-
display: flex;
69-
gap: 1rem;
70-
/*margin: 0;*/
71-
/*padding: 0;*/
72-
list-style: none;
73-
7482

75-
}

0 commit comments

Comments
 (0)