Skip to content

Commit

Permalink
Merge pull request #1 from GillianoA/skills-dev
Browse files Browse the repository at this point in the history
Skills Dev
  • Loading branch information
GillianoA authored Oct 18, 2024
2 parents 3ef7d9b + 92d40d3 commit b5cbaa5
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 2 deletions.
20 changes: 19 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,25 @@ <h1>Gilliano Agard | Software Developer <img src="images/wave-hi.gif" width="35p
</section>
<!-- Skills Section -->
<section id="skills">

<h2>Skills</h2>
<div style="clear:both;"></div>
<div class="all-skills">
<div class="skill">
<i class="fa-brands fa-html5 fa-2xl"></i>
<h6>HTML</h6>
<p>3 years+</p>
</div>
<div class="skill">
<i class="fa-brands fa-js fa-2xl"></i>
<h6>JavaScript</h6>
<p>2 years+</p>
</div>
<div class="skill">
<i class="fa-brands fa-css3-alt fa-2xl"></i>
<h6>CSS</h6>
<p>3 years+</p>
</div>
</div>
</section>
</div>
</section>
Expand Down
60 changes: 59 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,19 @@ nav ul li a:hover::after{
width: 100%;
}

/* Titles */
h2 {
text-align: justify;
font-size: 50px;
text-align: center;
float: left;
color:#f90707;
margin: 30px;
margin-left: 60px;
margin-top: 40px;
margin-bottom: 0px;
}

/* Hero Section */
#welcome-section {
margin-top: 20%;
Expand Down Expand Up @@ -98,7 +111,7 @@ nav ul li a:hover::after{
}

#about-me .text {
padding: 0 20px;
padding: 0 5%;
}

#about-me h1 {
Expand Down Expand Up @@ -140,4 +153,49 @@ nav ul li a:hover::after{
vertical-align: middle;
margin: 5px;
border-radius: 25px;
}

/* Skills Section */
#skills {
margin-top: 2.5%;
width: 100%;
}

.all-skills {
display: flex;
flex-direction: row;
flex-flow: wrap;
}

.skill {
border: 3px solid rgb(75, 72, 72);
background-color: #1c1c1c;
display: block;
border-radius: 10px;
text-align: center;
margin: 50px;
padding: 15px;
width: 125px;
font-size: 20px;
}

.skill i {
align-items: center;
color:#f90707
}

.skill h6 {
align-items: center;
font-size: 20px;
margin-block-start: 8px;
margin-block-end: 5px;
font-weight: bold;
}

.skill p {
align-items: center;
font-size: 15px;
color: grey;
margin-block-start: 5px;
margin-block-end: 5px;
}

0 comments on commit b5cbaa5

Please sign in to comment.