Skip to content

Commit

Permalink
adjusted styling for project/index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantStha308 committed May 7, 2024
1 parent fadb845 commit b7b5399
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 5 deletions.
15 changes: 13 additions & 2 deletions projects/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,20 @@

<section id="works">

<div class="container">
<section id="text-section">
<div id="container">
<h1 class="text-title"> PROJECTS </h1>
</div>

<div id="text-para-container">
<p id="text-para">
Few projects I've worked on and am working on. As of now, it consists mostly of
personal projects.
</p>
</div>

</section>


<section id="project-images">

Expand Down Expand Up @@ -70,7 +81,7 @@ <h1 class="text-title"> PROJECTS </h1>

</section>

</section>
</section>


</main>
Expand Down
31 changes: 28 additions & 3 deletions projects/project-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,36 @@ main{
color: rgb(177, 94, 94);
}

.container{
width: 100%;

#text-section{
display: grid;
justify-content: center;
justify-items: center;
}


#container{
display: grid;
justify-content: center;
align-items: center;
}

#container>h1{
margin: 0;
padding: 0;
font-size: 3rem;
color: rgb(146, 69, 69);
}

#text-para-container{
display: grid;
justify-content: center;
margin-bottom: 10px;
justify-items: center;
align-items: center;
width: 50vw;
font-size: 1.3rem;
color: rgb(177, 94, 94);
text-align: center;
}


Expand Down

0 comments on commit b7b5399

Please sign in to comment.