Skip to content

Commit

Permalink
feat: add skills section
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeBeeUA committed Jul 7, 2024
1 parent a0bb62e commit bf7fd10
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ <h2 class="about_h2">About me</h2>
</div>
</div>
</div>
<div class="skills">
<div class="container">
<h2>Skills</h2>
<ul class="skills_list">
<li class="skills_list_item">HTML</li>
<li class="skills_list_item">CSS</li>
<li class="skills_list_item">JS</li>
<li class="skills_list_item">Git</li>
<li class="skills_list_item">Figma</li>
</ul>
</div>
</div>
</main>
<footer>

Expand Down
30 changes: 28 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ html {
}

.container {
max-width: 1140px;
margin: 0 auto;
max-width: 1140px;
margin: 0 auto;
}

header {
Expand Down Expand Up @@ -121,3 +121,29 @@ main {
font-weight: 300;
font-size: 18px;
}

/* section skills */

.skills {
margin-top: 45px;
}

.skills h2 {
font-family: Roboto;
font-weight: 700;
font-size: 24px;
text-align: center;
}

.skills_list {
margin-top: 15px;
display: flex;
justify-content: space-around;
padding: 0;
}

.skills_list_item {
font-family: Roboto;
font-weight: 500;
font-size: 24px;
}

0 comments on commit bf7fd10

Please sign in to comment.